/* 
* Vijaso-Takowe - Yoga Website
* Colors:
* - Primary Background: #00d4c2 (bright turquoise-mint)
* - Accent: #ff9000 (sunny orange)
* - Text: #012033 (deep dark blue)
* - Section Background: #fdf6f0 (light cream)
* - Buttons: gradient from #ff9000 to #ffd000
*/

/* Reset and Base Styles */
:root {
	--primary: #00d4c2;
	--accent: #ff9000;
	--text: #012033;
	--bg-light: #fdf6f0;
	--white: #ffffff;
	--gradient-start: #ff9000;
	--gradient-end: #ffd000;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--white);
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	line-height: 1.2;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
}

h2:after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: var(--accent);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 15px;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary);
}

section {
	padding: 80px 0;
}

section:nth-child(odd) {
	background-color: var(--bg-light);
}

section:nth-child(even) {
	background-color: var(--white);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Header Styles */
.site-header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo {
	max-width: 180px;
}

.logo svg {
	display: block;
}

.main-nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 25px;
}

.nav-menu a {
	color: var(--text);
	font-weight: 500;
	position: relative;
}

.nav-menu a:hover {
	color: var(--accent);
}

.nav-menu a:after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--accent);
	transition: width 0.3s ease;
}

.nav-menu a:hover:after {
	width: 100%;
}

.nav-cta {
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
	color: var(--white) !important;
	padding: 8px 15px;
	border-radius: 25px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(255, 144, 0, 0.2);
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(255, 144, 0, 0.3);
}

.nav-cta:after {
	display: none !important;
}

.menu-toggle {
	display: none;
}

.menu-icon {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
}

.menu-icon span {
	height: 3px;
	width: 100%;
	background-color: var(--text);
	border-radius: 3px;
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	background-color: var(--primary);
	background-image: url("../img/iACZ2I.jpg");
	background-size: cover;
	background-position: center;
	color: var(--white);
	text-align: center;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.hero:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 194, 0.85) 0%, rgba(0, 172, 164, 0.85) 100%);
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	animation: fadeInUp 1s ease-out;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto 30px;
	animation: fadeInUp 1s ease-out 0.2s both;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
	display: inline-block;
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 600;
	padding: 15px 30px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 15px rgba(255, 144, 0, 0.3);
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(255, 144, 0, 0.4);
	color: var(--white);
}

/* About Section */
.about-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.benefits {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.benefit-item {
	flex: 1;
	min-width: 200px;
	background-color: var(--white);
	padding: 20px;
	margin-right: 15px;
	margin-bottom: 15px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
	color: var(--accent);
	margin-bottom: 10px;
}

/* Format Cards Section */
.format-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.format-card {
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	background-color: var(--white);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.format-card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.format-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.format-card h3 {
	color: var(--primary);
	margin-top: 10px;
}

.format-card .price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent);
	margin: 15px 0;
}

.format-card .time {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 20px;
}

.button {
	display: inline-block;
	background-color: var(--primary);
	color: var(--white);
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.button:hover {
	background-color: var(--accent);
	color: var(--white);
}

/* Schedule and Gallery */
.schedule-container {
	margin-bottom: 50px;
	overflow-x: auto;
}

.schedule {
	width: 100%;
	border-collapse: collapse;
}

.schedule th,
.schedule td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.schedule th {
	background-color: var(--primary);
	color: var(--white);
}

.schedule tr:nth-child(even) {
	background-color: rgba(0, 212, 194, 0.05);
}

.schedule tr:hover {
	background-color: rgba(0, 212, 194, 0.1);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.gallery-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: all 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

/* Testimonials */
.testimonial-slider {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.testimonial {
	flex: 1;
	min-width: 280px;
	max-width: 350px;
	background-color: var(--white);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	position: relative;
}

.testimonial:before {
	content: '"';
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 4rem;
	color: rgba(0, 212, 194, 0.2);
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial .quote {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial .author {
	font-weight: 600;
	color: var(--accent);
	text-align: right;
}

/* Booking Form */
.booking {
	background-color: var(--primary);
	color: var(--white);
}

.booking h2:after {
	background-color: var(--white);
}

.booking-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text);
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e1e1e1;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 212, 194, 0.2);
}

.checkbox-group {
	display: flex;
	align-items: center;
}

.checkbox-group input {
	width: auto;
	margin-right: 10px;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
}

.submit-button {
	display: block;
	width: 100%;
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 15px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

.submit-button:hover {
	background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 144, 0, 0.4);
}

/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	padding: 20px;
	background-color: var(--white);
	color: var(--text);
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background-color: rgba(0, 212, 194, 0.05);
}

.faq-question:after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--accent);
}

.faq-toggle:checked + .faq-question {
	background-color: var(--primary);
	color: var(--white);
}

.faq-toggle:checked + .faq-question:after {
	content: "−";
	color: var(--white);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: var(--white);
	transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 20px;
	margin: 0;
}

/* Contact Section */
.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-item {
	margin-bottom: 20px;
}

.contact-item h3 {
	color: var(--primary);
	margin-bottom: 8px;
}

.map-container {
	flex: 1;
	min-width: 300px;
	height: 350px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Footer */
.site-footer {
	background-color: var(--text);
	color: var(--bg-light);
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
}

.footer-logo,
.footer-description,
.footer-contact,
.footer-links {
	flex: 1;
	min-width: 250px;
}

.footer-logo svg {
	max-width: 180px;
	margin-bottom: 15px;
}

.footer-description p {
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer-contact p {
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.footer-contact a {
	color: var(--primary);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-nav {
	flex: 1;
	min-width: 150px;
}

.footer-links h3 {
	color: var(--accent);
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--bg-light);
	font-size: 0.9rem;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	opacity: 1;
	color: var(--primary);
}

/* Legal links - horizontal */
.footer-legal {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(253, 246, 240, 0.1);
}

.footer-legal ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	gap: 20px;
}

.footer-legal li {
	margin: 0;
}

.footer-legal a {
	color: var(--bg-light);
	font-size: 0.85rem;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.footer-legal a:hover {
	opacity: 1;
	color: var(--primary);
}

.footer-bottom {
	text-align: center;
}

.footer-bottom p {
	font-size: 0.8rem;
	opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	background-color: var(--white);
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	animation: slideUp 0.5s ease forwards;
}

.cookie-content p {
	margin-bottom: 15px;
	font-size: 0.9rem;
}

.cookie-accept {
	background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
	color: var(--white);
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-accept:hover {
	background: linear-gradient(to right, var(--gradient-end), var(--gradient-start));
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 144, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Styles */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero {
		padding: 100px 0;
	}

	.hero h1 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	.menu-icon {
		display: flex;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--white);
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.menu-toggle:checked ~ .nav-menu {
		max-height: 400px;
	}

	.nav-menu li {
		margin: 0 0 15px 0;
	}

	.hero {
		padding: 80px 0;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.format-card {
		min-width: 100%;
	}

	.booking-form {
		padding: 30px 20px;
	}
}

@media (max-width: 576px) {
	h1 {
		font-size: 1.8rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.hero {
		padding: 60px 0;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.cta-button {
		padding: 12px 25px;
		font-size: 1rem;
	}

	.benefit-item {
		min-width: 100%;
		margin-right: 0;
	}

	.footer-content {
		flex-direction: column;
		gap: 20px;
	}

	.footer-logo,
	.footer-description,
	.footer-contact,
	.footer-links {
		min-width: 100%;
	}

	.cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
		padding: 15px;
	}
}
