/*
* OTONGO.art - Main Stylesheet
* Blending styles from Valentina Galata (illustrator) and EEZAY (music artist)
*/

/* === Local Google Fonts === */
@font-face {
	font-family: "Montserrat";
	src: url("fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Montserrat";
	src: url("fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Raleway";
	src: url("fonts/Raleway/Raleway-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Raleway";
	src: url("fonts/Raleway/Raleway-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Raleway";
	src: url("fonts/Raleway/Raleway-Italic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Skip link for accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: #fff;
	padding: 8px;
	z-index: 1000;
	transition: top 0.3s;
}

.skip-link:focus {
	top: 0;
}

:root {
	/* Color palette inspired by new OTONGO logo */
	--primary-dark: #000000;
	--primary-light: #ffffff;
	--accent-blue: #42b7f5;
	--accent-purple: #8f5fcf;
	--accent-orange: #ff8d42;
	--gradient-start: #000000;
	--gradient-end: #42b7f5;
	--text-dark: #111111;
	--text-light: #f5f5f5;
	--text-muted: #767676;
	--shadow: rgba(0, 0, 0, 0.2);

	/* Typography */
	--font-primary: "Raleway", sans-serif;
	--font-secondary: "Montserrat", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--primary-light);
	overflow-x: hidden;
	position: relative;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
	margin-bottom: 1rem;
	line-height: 1.3;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 3rem;
	text-align: center;
	position: relative;
}

h3 {
	font-size: 1.75rem;
}

p {
	margin-bottom: 1.5rem;
}

a {
	text-decoration: none;
	color: var(--accent-blue);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--accent-purple);
}

img {
	max-width: 100%;
	height: auto;
}

.accent {
	background: linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}

section {
	padding: 5rem 0;
}

/* Contact Section */
.contact {
	background-color: #f9f9f9;
	position: relative;
	overflow: hidden;
}

/* Accordion Styles */
.accordion-container {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.accordion-item {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background-color: var(--primary-light);
}

.accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	background: linear-gradient(
		45deg,
		var(--accent-blue),
		var(--accent-purple),
		var(--accent-blue)
	);
	background-size: 200% 200%;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.accordion-header h3 {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 600;
}

.accordion-icon {
	font-size: 1.8rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
	background-color: var(--primary-light);
}

.accordion-item.active .accordion-content {
	max-height: 1000px;
	padding: 1.5rem;
}

.contact-form-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: flex-start;
	justify-content: space-between;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-form {
	flex: 1;
	min-width: 300px;
	background: var(--primary-light);
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form iframe {
	min-height: 400px;
	width: 100%;
}

/* Contact Accordion Section */
.contact-accordion {
	padding: 60px 0;
	background-color: #f9f9f9; /* Light background for contrast */
}

.contact-accordion .container {
	max-width: 900px; /* Limit width for better readability */
	margin: 0 auto;
	padding: 0 15px;
}

.accordion-container {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.accordion-item {
	border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-header {
	background-color: #fff;
	color: #333;
	padding: 15px 20px;
	width: 100%;
	text-align: left;
	border: none;
	cursor: pointer;
	display: flex; /* Use flexbox for alignment */
	justify-content: space-between; /* Space between title and icon */
	align-items: center; /* Vertically center items */
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background-color: #f1f1f1;
}

.accordion-header h2 {
	margin: 0;
	font-size: 1.5em;
	color: #333; /* Ensure h2 color contrasts with background */
}

.accordion-header h2 .accent {
	color: var(--accent-color);
}

.accordion-icon {
	font-size: 1.5em;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, padding 0.5s ease-out;
	background-color: #fff;
	padding: 0 20px; /* Add padding only when open */
	will-change: max-height, padding;
}

.contact-form-embed {
	padding: 20px 0; /* Add padding inside the content area */
}

.accordion-content.open {
	max-height: 700px; /* Adjust based on iframe height + padding */
	padding: 20px; /* Apply padding when open */
}

.accordion-header.active .accordion-icon {
	transform: rotate(45deg);
}

/* Custom Cursor - Inspired by EEZAY's website */
.cursor-follower {
	position: fixed;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: rgba(66, 183, 245, 0.5);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.1s ease, background-color 0.3s ease;
	backdrop-filter: invert(1);
	display: none;
	will-change: transform, background-color;
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	transition: all 0.4s ease;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.transparent {
	background-color: transparent;
	box-shadow: none;
}

header.scrolled {
	padding: 1rem 2rem;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
	color: var(--text-dark);
}

.logo img {
	width: 40px;
	height: 40px;
	margin-right: 0.75rem;
	transition: transform 0.5s ease;
}

.logo span {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 1px;
}

nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	margin-left: 2.5rem;
}

nav ul li a {
	color: var(--text-dark);
	font-weight: 500;
	position: relative;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
	transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background-color: var(--text-dark);
	margin: 3px 0;
	transition: all 0.3s ease;
}

/* Hero Section - Blending EEZAY's atmospheric style with Valentina's clean approach */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2a3d 100%);
	color: var(--text-light);
}

/* Schwebendes Hero-Logo */
.floating-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 320px;
}
.hero-logo {
	width: 320px;
	max-width: 90vw;
	animation: hero-float 5s ease-in-out infinite;
	filter: drop-shadow(0 8px 32px rgba(66, 183, 245, 0.15));
	will-change: transform;
}
@media (max-width: 600px) {
	.hero-logo {
		width: 200px;
	}
}
@keyframes hero-float {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	45% {
		transform: translateY(-18px) scale(1.03);
	}
	55% {
		transform: translateY(-18px) scale(1.03);
	}
	70% {
		transform: translateY(0) scale(1);
	}
}

.hero-content {
	max-width: 600px;
	z-index: 2;
	padding: 2rem;
}

.hero-content h1 {
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 2.5rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
	color: var(--text-light);
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(66, 183, 245, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(66, 183, 245, 0.4);
	color: var(--text-light);
}

.hero-visual {
	position: relative;
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circle-container {
	position: relative;
	width: 400px;
	height: 400px;
}

.circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--accent-blue),
		var(--accent-orange),
		var(--accent-purple)
	);
	animation: rotate 15s linear infinite;
	box-shadow: 0 0 30px rgba(66, 183, 245, 0.3);
	position: relative;
	overflow: hidden;
}

.circle::before {
	content: "";
	position: absolute;
	top: 50px;
	left: 50px;
	right: 50px;
	bottom: 50px;
	border-radius: 50%;
	background: #fff;
	z-index: 2;
	box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
}

.about-text {
	flex: 1;
}

.about-text p {
	font-size: 1.1rem;
	color: #000000 !important;
}

.about-image {
	flex: 1;
	text-align: center;
}

.about-image img {
	max-width: 300px;
	border-radius: 50%;
	box-shadow: 0 15px 30px var(--shadow);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Artists Section - Grid layout inspired by Valentina Galata's portfolio */
.artists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.artist-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px var(--shadow);
	transition: all 0.4s ease;
	background-color: #fff;
}

.artist-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.artist-image {
	height: 250px;
	overflow: hidden;
}

.image-placeholder {
	width: 100%;
	height: 100%;
	position: relative;
}

/* Styling for individual artist placeholders */
.valentina-style {
	background: linear-gradient(
		to right,
		var(--accent-blue),
		var(--accent-purple)
	);
}

.eezay-style {
	background: linear-gradient(45deg, var(--primary-dark), var(--accent-orange));
	position: relative;
}

.eezay-style::after {
	content: "EEZAY";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-shadow: 0 0 10px var(--accent-blue), 0 0 20px var(--accent-orange);
}

.garo-style {
	background: linear-gradient(45deg, var(--primary-dark), var(--accent-purple));
	position: relative;
}

.garo-style::after {
	content: "GARO";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px
		rgba(255, 255, 255, 0.2);
}

.drsilas-style {
	background: linear-gradient(45deg, var(--primary-dark), var(--accent-blue));
	position: relative;
}

.drsilas-style::after {
	content: "DR SILAS";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(139, 90, 43, 0.6), 0 0 20px rgba(94, 48, 35, 0.4);
}

.coming-soon-badge {
	position: absolute;
	top: 20px;
	right: -30px;
	background: var(--accent-orange);
	color: white;
	padding: 5px 30px;
	transform: rotate(45deg);
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 1;
}

.artist-info {
	padding: 1.5rem;
}

.artist-specialty {
	color: #000000 !important;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.artist-description {
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
	color: #000000 !important;
}

.artist-card h3 {
	color: #000000 !important;
}

.artist-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	border: 2px solid #000000;
	color: #000000;
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.artist-link:hover {
	background-color: #000000;
	color: white;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.artist-link.disabled {
	opacity: 0.6;
	cursor: not-allowed;
	border-color: #000000;
	color: #000000;
}

.artist-link.disabled:hover {
	background-color: transparent;
	color: #000000;
}

/* Modal Styles */
.modal-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-container.active {
	display: flex;
	opacity: 1;
}

.modal {
	position: relative;
	width: 90%;
	max-width: 700px;
	max-height: 80vh;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.modal-container.active .modal {
	transform: translateY(0);
}

.modal-content {
	padding: 2rem;
	overflow-y: auto;
	max-height: 80vh;
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 1.8rem;
	color: var(--text-dark);
	cursor: pointer;
	transition: color 0.3s ease;
	z-index: 10;
}

.close-modal:hover {
	color: var(--accent-blue);
}

/* Modal Content Styles */

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: 1.5rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-banner.visible {
	transform: translateY(0);
}

.cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.cookie-text h3 {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.cookie-text p {
	font-size: 0.9rem;
	color: #555;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

/* Logo Animation */

.logo:hover img {
	transform: rotate(15deg) scale(1.1);
}

.cookie-buttons .btn {
	padding: 0.5rem 1.5rem;
	border-radius: 4px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	will-change: transform, box-shadow;
}

.cookie-buttons .btn-primary {
	background: linear-gradient(45deg, var(--accent-blue), var(--accent-orange));
	color: white;
}

.cookie-buttons .btn-secondary {
	background-color: #f1f1f1;
	color: #333;
}

.cookie-buttons .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: space-between;
	}
}
.modal-content h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.modal-content h4 {
	font-size: 1.3rem;
	margin: 1.5rem 0 1rem;
	color: var(--text-dark);
}

.modal-content p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-dark);
}

.modal-content strong {
	font-weight: 600;
	color: var(--text-dark);
}

.modal-content a {
	color: var(--accent-blue);
	text-decoration: underline;
}

.modal-content a:hover {
	color: var(--accent-orange);
}

/* Footer */
footer {
	background-color: var(--primary-dark);
	color: var(--text-light);
	padding: 4rem 0 1.5rem;
	position: relative;
	border-top: 4px solid var(--accent-blue);
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
}

.footer-logo {
	display: flex;
	align-items: center;
}

.footer-logo img {
	width: 50px;
	height: 50px;
	margin-right: 1rem;
}

.footer-logo span {
	font-size: 1.5rem;
	font-weight: 700;
}

.footer-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
}

.footer-links a {
	color: var(--text-light);
	opacity: 0.8;
	transition: all 0.3s ease;
	position: relative;
}

.footer-links a:hover {
	opacity: 1;
	color: var(--accent-blue);
	text-shadow: 0 0 5px rgba(66, 183, 245, 0.5);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	opacity: 0.7;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(66, 183, 245, 0.1),
		transparent
	);
	padding: 1.5rem 0;
}

.otongo-link {
	color: var(--accent-blue);
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease;
	text-decoration: none;
}

.otongo-link:hover {
	color: var(--accent-orange);
	text-shadow: 0 0 8px rgba(255, 141, 66, 0.6);
}

/* Media Queries */
@media (max-width: 1024px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.hero {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.hero-content {
		margin-bottom: 3rem;
	}

	.hero-visual {
		width: 100%;
		height: 40vh;
	}

	.circle-container {
		width: 300px;
		height: 300px;
	}

	.about-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	.contact-form-container {
		flex-direction: column;
	}

	h2 {
		font-size: 2rem;
	}

	.menu-toggle {
		display: flex;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background-color: white;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: all 0.5s ease;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	nav.active {
		right: 0;
	}

	nav ul {
		flex-direction: column;
		align-items: center;
	}

	nav ul li {
		margin: 1.5rem 0;
	}

	.artists-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.footer-links ul {
		justify-content: center;
	}

	.hero {
		padding-top: 80px;
		flex-direction: column;
		text-align: center;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-visual {
		margin-top: 20px;
		max-width: 60%;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		margin: 20px 0;
	}

	.artists-grid {
		grid-template-columns: 1fr; /* Stack artists on small screens */
	}

	footer .footer-content {
		flex-direction: column;
		text-align: center;
	}

	footer .footer-links ul {
		flex-direction: column;
		margin-top: 15px;
	}

	footer .footer-links ul li {
		margin: 5px 0;
	}

	.modal {
		width: 95%;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	section {
		padding: 3rem 0;
	}

	.circle-container {
		width: 250px;
		height: 250px;
	}
}
