/* 
 * Lumina Yoga - Main Stylesheet
 * Author: Web Developer
 * Version: 1.0
 */

/* Variables */
:root {
  --color-bg: #FFFAF1;
  --color-accent: #FF6B6B;
  --color-secondary: #3E8E7E;
  --color-text: #1E1E1E;
  --color-heading: #3A3A3A;
  --gradient-start: #FFE0C2;
  --gradient-end: #E8FFEC;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', Arial, sans-serif;
  --transition-default: all 0.3s ease;
  --shadow-default: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius-default: 0.5em;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  text-align: center;
}

section {
  padding: 4em 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: var(--radius-default);
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-default);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:hover {
  background-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-default);
}

.btn-primary {
  background-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: white;
}

/* Header */
header {
  padding: 1em 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: var(--color-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img, .logo svg {
  height: 3em;
  width: auto;
}

.logo-text {
  margin-left: 0.5em;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5em;
  color: var(--color-secondary);
}

.logo-tagline {
  font-size: 0.8em;
  color: var(--color-accent);
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 1.5em;
}

nav a {
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-default);
}

nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 3px 0;
  transition: var(--transition-default);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../img/Kh61lO.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 5em;
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
  color: var(--color-secondary);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.about-container {
  display: flex;
  align-items: center;
  gap: 2em;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-default);
}

.about-content {
  flex: 1;
}

/* Benefits Section */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}

.benefit-card {
  background-color: white;
  padding: 2em;
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-default);
  transition: var(--transition-default);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  color: var(--color-accent);
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

/* Classes Section */
.classes {
  background-color: #f8f8f8;
}

.classes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}

.class-card {
  background-color: white;
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-default);
  transition: var(--transition-default);
}

.class-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.class-image {
  height: 200px;
  overflow: hidden;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-default);
}

.class-card:hover .class-image img {
  transform: scale(1.05);
}

.class-content {
  padding: 1.5em;
}

.class-type {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-bottom: 0.5em;
}

.class-price {
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 1em;
  font-size: 1.2em;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(to left, var(--gradient-start), var(--gradient-end));
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
}

.testimonial-card {
  background-color: white;
  padding: 2em;
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-default);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4em;
  color: rgba(62, 142, 126, 0.1);
  font-family: Georgia;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1em;
}

.author-name {
  font-weight: 700;
  color: var(--color-secondary);
}

/* Form Section */
.registration {
  background-color: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5em;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ddd;
  border-radius: var(--radius-default);
  font-family: var(--font-body);
  font-size: 1em;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(62, 142, 126, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5em;
  margin-top: 0.2em;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1em;
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

.faq-question {
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5em;
  cursor: pointer;
}

.faq-answer {
  color: var(--color-text);
}

/* Contact Section */
.contact {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.contact-icon {
  margin-right: 0.5em;
  color: var(--color-secondary);
}

.map-container {
  border-radius: var(--radius-default);
  overflow: hidden;
  box-shadow: var(--shadow-default);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 3em 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.footer-logo img, .footer-logo svg {
  height: 3em;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about p {
  margin-bottom: 1em;
}

.footer-heading {
  color: white;
  margin-bottom: 1em;
  font-size: 1.2em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5em;
}

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2em;
  margin-top: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-text {
  flex: 1;
  margin-right: 1em;
}

.cookie-buttons {
  display: flex;
  gap: 0.5em;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 5em 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you h1 {
  color: var(--color-secondary);
  margin-bottom: 0.5em;
}

.thank-you p {
  max-width: 600px;
  margin: 0 auto 1.5em;
}

/* Policy Pages */
.policy-page {
  padding: 5em 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 1.5em;
}

.policy-content p {
  margin-bottom: 1em;
}

.policy-content ul {
  margin-bottom: 1em;
  padding-left: 2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    flex-direction: column;
    padding: 1em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav li {
    margin: 0 0 1em 0;
  }
  
  .show-menu {
    display: flex;
  }
  
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2em 0;
  }
  
  .hero h1 {
    font-size: 2em;
  }
  
  .hero {
    margin-top: 4em;
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.5s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* For accessible elements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
} 