/* 
 * Main Styles for wadisu-cegumu Yoga Studio
 * Color Palette:
 * - Background: Gradient from #FF6F61 (coral-pink) to #A8E6CF (mint-green)
 * - Headings: #7F00FF (lavender)
 * - Accents: #FFA500 (orange)
 * - Text: #3E3E3E (dark gray-violet)
 * - White text on buttons with gradient background
 */

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #3e3e3e;
	background: linear-gradient(135deg, #ff6f61 0%, #a8e6cf 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #7f00ff;
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #ffa500;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #7f00ff;
}

ul,
ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 1rem;
}

section {
	padding: 4rem 0;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.95);
	padding: 1rem;
	border-radius: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cookie-popup p {
	margin-bottom: 1rem;
}

.cookie-popup button {
	background: linear-gradient(135deg, #ffa500 0%, #ff6f61 100%);
	color: white;
	border: none;
	padding: 0.5rem 2rem;
	border-radius: 2rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cookie-popup button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
header {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	color: #7f00ff;
	font-size: 1.8rem;
	font-weight: 700;
	text-transform: lowercase;
}

/* Menu Icon (Hamburger) */
.menu-toggle {
	display: none;
}

.menu-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
	z-index: 200;
}

.menu-icon span {
	display: block;
	height: 3px;
	width: 100%;
	border-radius: 3px;
	background: #7f00ff;
	transition: all 0.3s ease;
}

/* Navigation */
nav ul {
	display: flex;
	list-style: none;
	margin: 0;
}

nav ul li {
	margin-left: 1.5rem;
}

nav ul li a {
	color: #3e3e3e;
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffa500;
	transition: width 0.3s ease;
}

nav ul li a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("./img/0jUMCc.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 6rem 0;
}

.hero h1,
.hero p {
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, #ffa500 0%, #ff6f61 100%);
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	padding: 1rem 2.5rem;
	border-radius: 3rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.cta-button:hover {
	color: white;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem;
}

.about-image {
	flex: 1;
	min-width: 300px;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text {
	flex: 1;
	min-width: 300px;
}

/* Courses Section */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.course-card {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.course-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.course-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 1rem 1rem 0 0;
}

.course-card h3,
.course-card p {
	padding: 0 1.5rem;
}

.course-card h3 {
	margin-top: 1.5rem;
}

.course-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem 1.5rem;
}

.price {
	font-weight: 700;
	font-size: 1.2rem;
	color: #7f00ff;
}

.course-button {
	background: linear-gradient(135deg, #ffa500 0%, #ff6f61 100%);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 2rem;
	font-weight: 600;
}

.course-button:hover {
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 1rem;
	padding: 4rem 0;
	margin: 4rem 0;
}

.testimonial-slider {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.testimonial {
	flex: 1;
	min-width: 300px;
	max-width: 400px;
	background: white;
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	position: relative;
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 0;
	left: 1rem;
	font-size: 5rem;
	color: rgba(127, 0, 255, 0.1);
	line-height: 1;
}

.testimonial-content p {
	font-style: italic;
	margin-bottom: 1.5rem;
}

.testimonial-content h4 {
	margin-bottom: 0.2rem;
}

.client-details {
	font-size: 0.9rem;
	color: #666;
}

/* Schedule Section */
.schedule-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.schedule-day {
	background: rgba(255, 255, 255, 0.9);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.schedule-day h3 {
	margin-bottom: 1.5rem;
	text-align: center;
	color: #ffa500;
}

.schedule-day ul {
	list-style: none;
	margin: 0;
}

.schedule-day li {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

.schedule-day li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.time,
.course {
	display: block;
}

.time {
	font-weight: 600;
	color: #7f00ff;
}

/* Benefits Section */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.benefit-card {
	background: rgba(255, 255, 255, 0.9);
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

/* Instructors Section */
.instructors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.instructor-card {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding-bottom: 2rem;
	text-align: center;
}

.instructor-photo {
	height: 200px;
	background: linear-gradient(135deg, #ffa500 0%, #7f00ff 100%);
	margin-bottom: 2rem;
}

.instructor-title {
	color: #ffa500;
	font-weight: 600;
	margin-bottom: 1rem;
}

.instructor-card p {
	padding: 0 1.5rem;
}

/* Booking Form Section */
.booking {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 1rem;
	padding: 4rem 0;
	margin: 4rem 0;
}

.booking h2 {
	margin-bottom: 3rem;
}

.error-message {
	background: rgba(255, 99, 71, 0.2);
	color: #ff6347;
	padding: 1rem;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.booking-form {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-group input,
.form-group select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	font-size: 1rem;
}

.form-group.checkbox {
	display: flex;
	align-items: center;
}

.form-group.checkbox input {
	width: auto;
	margin-right: 0.5rem;
}

.form-group.checkbox label {
	margin: 0;
}

.submit-button {
	background: linear-gradient(135deg, #ffa500 0%, #ff6f61 100%);
	color: white;
	border: none;
	width: 100%;
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.required-fields {
	font-size: 0.9rem;
	color: #666;
	margin-top: 1rem;
	text-align: center;
}

/* Footer Section */
footer {
	background: rgba(62, 62, 62, 0.9);
	color: white;
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
	color: #ffa500;
	margin-bottom: 1.5rem;
}

.footer-contact ul,
.footer-links ul {
	list-style: none;
	margin: 0;
}

.footer-contact ul li,
.footer-links ul li {
	margin-bottom: 0.75rem;
}

.footer-contact ul li a,
.footer-links ul li a {
	color: white;
	opacity: 0.8;
}

.footer-contact ul li a:hover,
.footer-links ul li a:hover {
	opacity: 1;
	color: #ffa500;
}

.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page */
.thank-you {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	padding: 4rem 0;
	margin: 4rem 0;
	text-align: center;
}

.thank-you-content {
	max-width: 800px;
	margin: 0 auto;
}

.thank-you-content ul {
	text-align: left;
	display: inline-block;
	margin: 2rem 0;
}

.back-button {
	display: inline-block;
	background: linear-gradient(135deg, #ffa500 0%, #ff6f61 100%);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 2rem;
	font-weight: 600;
	margin-top: 2rem;
	transition: all 0.3s ease;
}

.back-button:hover {
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Policy Pages */
.policy-page {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	padding: 4rem 0;
	margin: 4rem 0;
}

.policy-content {
	max-width: 800px;
	margin: 0 auto 2rem;
}

.policy-content h2 {
	text-align: left;
	font-size: 1.5rem;
	margin-top: 3rem;
}

.policy-content h2:first-child {
	margin-top: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	.hero h1 {
		font-size: 2.8rem;
	}
}

@media (max-width: 768px) {
	/* Hamburger Menu for Mobile */
	.menu-icon {
		display: flex;
	}

	.menu-toggle:checked + .menu-icon span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.menu-toggle:checked + .menu-icon span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle:checked + .menu-icon span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -8px);
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: white;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 150;
	}

	.menu-toggle:checked ~ nav {
		right: 0;
	}

	nav ul {
		flex-direction: column;
		padding: 5rem 2rem 2rem;
	}

	nav ul li {
		margin-left: 0;
		margin-bottom: 1.5rem;
	}

	/* Other Mobile Adjustments */
	.hero {
		min-height: 70vh;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	section {
		padding: 3rem 0;
	}

	.about-content,
	.testimonial-slider {
		flex-direction: column;
	}

	.about-image,
	.about-text,
	.testimonial {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0.5rem;
	}

	.hero h1 {
		font-size: 1.8rem;
	}

	.cta-button {
		padding: 0.75rem 2rem;
		font-size: 1rem;
	}

	section {
		padding: 2rem 0;
	}
}
