/* =================================================================
   Golden Myst - Warm & Friendly Photography Studio CSS
   Design Style: Warm, approachable, inviting
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #3D3D3D;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C2C2C;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

h4 {
  font-size: 22px;
  margin-bottom: 14px;
}

p {
  margin-bottom: 16px;
  color: #5A5A5A;
}

a {
  color: #C9A961;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #B89850;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 10px;
  color: #5A5A5A;
}

strong {
  color: #2C2C2C;
  font-weight: 600;
}

em {
  color: #6A6A6A;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header Styles */
header {
  background-color: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(201, 169, 97, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #F4F1EA;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #3D3D3D;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #C9A961;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C9A961;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
  background: linear-gradient(135deg, #B89850 0%, #A78740 100%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #C9A961;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #B89850;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F4F1EA;
  color: #2C2C2C;
  border: none;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C9A961;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #2C2C2C;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #F4F1EA;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  padding-left: 12px;
}

/* Hero Sections */
.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #F4F1EA 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #C9A961;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #2C2C2C;
  margin-bottom: 24px;
  line-height: 1.2;
}

.subheadline {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-simple {
  background: linear-gradient(135deg, #FFF9F0 0%, #F4F1EA 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #C9A961;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
  background: linear-gradient(135deg, #B89850 0%, #A78740 100%);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: #C9A961;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #C9A961;
}

.btn-secondary:hover {
  background: #C9A961;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-link {
  color: #C9A961;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.btn-link:hover {
  gap: 12px;
  color: #B89850;
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 18px;
  color: #6A6A6A;
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Philosophy Section */
.philosophy {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 60px 20px;
}

.philosophy h2 {
  text-align: center;
  color: #2C2C2C;
  margin-bottom: 24px;
}

.philosophy p {
  font-size: 18px;
  line-height: 1.8;
  color: #5A5A5A;
  text-align: center;
}

/* Services Grid */
.services-preview {
  background: #FFFFFF;
  padding: 80px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.service-card {
  background: #FFF9F0;
  padding: 32px 28px;
  border-radius: 16px;
  flex: 1 1 280px;
  min-width: 280px;
  transition: all 0.3s ease;
  border: 2px solid #F4F1EA;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.service-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p {
  color: #5A5A5A;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  color: #2C2C2C;
  font-weight: 700;
  font-size: 22px;
  margin-top: 16px;
}

/* Why Us Section */
.why-us {
  background: linear-gradient(135deg, #FFF9F0 0%, #F4F1EA 100%);
  padding: 80px 20px;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.feature {
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 16px;
  flex: 1 1 260px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.feature h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature p {
  color: #5A5A5A;
  line-height: 1.7;
}

/* Process Section */
.process {
  background: #FFFFFF;
  padding: 80px 20px;
}

.process h2 {
  text-align: center;
  margin-bottom: 16px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
  justify-content: center;
}

.step {
  background: #FFF9F0;
  padding: 32px 24px;
  border-radius: 16px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #F4F1EA;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.step-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #C9A961;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 12px;
}

.step p {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #FFF9F0 0%, #F4F1EA 100%);
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 36px 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.15);
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.25);
  border-color: #C9A961;
}

.testimonial-card .quote {
  font-size: 17px;
  line-height: 1.7;
  color: #3D3D3D;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .client-name {
  color: #2C2C2C;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.testimonial-card .session-type {
  color: #C9A961;
  font-size: 14px;
  font-weight: 500;
}

/* CTA Banners */
.cta-banner {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 20px;
  margin: 60px 20px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: 40px;
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-contact {
  background: #FFF9F0;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
}

.cta-contact h2 {
  margin-bottom: 16px;
}

.cta-contact p {
  font-size: 18px;
  margin-bottom: 32px;
}

.email-link {
  font-size: 17px;
  color: #5A5A5A;
  margin-top: 24px;
}

/* Values Section */
.values {
  background: #FFFFFF;
  padding: 80px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 16px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: #FFF9F0;
  padding: 36px 28px;
  border-radius: 16px;
  flex: 1 1 260px;
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.value-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.value-card p {
  color: #5A5A5A;
  line-height: 1.7;
}

/* Story Section */
.story {
  background: #FFF9F0;
  padding: 80px 20px;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.approach {
  background: #FFFFFF;
  padding: 80px 20px;
}

.approach h2 {
  text-align: center;
  margin-bottom: 32px;
}

.equipment {
  background: #FFF9F0;
  padding: 80px 20px;
}

.equipment h2 {
  text-align: center;
  margin-bottom: 16px;
}

.location {
  background: #FFFFFF;
  padding: 80px 20px;
}

.location h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* Service Detailed Pages */
.services-intro {
  background: #FFF9F0;
  padding: 60px 20px;
  text-align: center;
}

.service-detailed {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 20px;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail h2 {
  color: #2C2C2C;
  margin-bottom: 20px;
}

.price-large {
  font-size: 32px;
  color: #C9A961;
  font-weight: 700;
  margin: 20px 0;
}

.service-detail h3 {
  color: #C9A961;
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 32px;
}

.service-detail ul li {
  padding-left: 8px;
  margin-bottom: 12px;
}

.booking-cta {
  background: linear-gradient(135deg, #FFF9F0 0%, #F4F1EA 100%);
  padding: 80px 20px;
  text-align: center;
}

.booking-cta h2 {
  margin-bottom: 16px;
}

.booking-cta p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* Portfolio Pages */
.portfolio-intro {
  background: #FFF9F0;
  padding: 60px 20px;
}

.portfolio-intro .quote {
  font-size: 22px;
  font-style: italic;
  color: #C9A961;
  text-align: center;
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
}

.portfolio-categories {
  background: #FFFFFF;
  padding: 80px 20px;
}

.portfolio-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.category-card {
  background: #FFF9F0;
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 260px;
  text-align: center;
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.category-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.category-card p {
  color: #5A5A5A;
}

.cta-portfolio {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.cta-portfolio h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-portfolio p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Workshops Pages */
.workshops-intro {
  background: #FFF9F0;
  padding: 80px 20px;
}

.workshops-intro h2 {
  text-align: center;
  margin-bottom: 32px;
}

.workshop-types {
  background: #FFFFFF;
  padding: 80px 20px;
}

.workshop-types h2 {
  text-align: center;
  margin-bottom: 48px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.workshop-card {
  background: #FFF9F0;
  padding: 36px 28px;
  border-radius: 16px;
  flex: 1 1 260px;
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.workshop-card h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.workshop-card p {
  color: #5A5A5A;
  margin-bottom: 8px;
}

.workshop-detailed {
  background: #FFFFFF;
  padding: 80px 20px;
}

.workshop-detail {
  max-width: 800px;
  margin: 0 auto;
}

.workshop-detail h2 {
  margin-bottom: 20px;
}

.workshop-detail h3 {
  color: #C9A961;
  margin-top: 32px;
  margin-bottom: 16px;
}

.instructor {
  background: #FFF9F0;
  padding: 80px 20px;
}

.instructor h2 {
  text-align: center;
  margin-bottom: 32px;
}

.faq-workshops {
  background: #FFFFFF;
  padding: 80px 20px;
}

.faq-workshops h2 {
  text-align: center;
  margin-bottom: 48px;
}

.cta-workshops {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.cta-workshops h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-workshops p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Contact Pages */
.contact-intro {
  background: #FFF9F0;
  padding: 60px 20px;
}

.contact-info {
  background: #FFFFFF;
  padding: 80px 20px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-item {
  flex: 1 1 250px;
  background: #FFF9F0;
  padding: 32px 28px;
  border-radius: 16px;
  border: 2px solid #F4F1EA;
  position: relative;
  margin-bottom: 20px;
}

.contact-item h3 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-item p {
  color: #5A5A5A;
  line-height: 1.7;
}

.booking-process {
  background: #FFF9F0;
  padding: 80px 20px;
}

.booking-process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: #C9A961;
  transform: translateX(8px);
}

.step-item .step-number {
  font-size: 32px;
  font-weight: 700;
  color: #C9A961;
  font-family: 'Cormorant Garamond', serif;
  min-width: 50px;
}

.step-item p {
  color: #5A5A5A;
  margin: 0;
  line-height: 1.6;
}

.note {
  text-align: center;
  font-style: italic;
  color: #6A6A6A;
  margin-top: 32px;
}

.visit-studio {
  background: #FFFFFF;
  padding: 80px 20px;
}

.visit-studio h2 {
  text-align: center;
  margin-bottom: 32px;
}

.faq-contact {
  background: #FFF9F0;
  padding: 80px 20px;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 28px 32px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 2px solid #F4F1EA;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C9A961;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.15);
}

.faq-item h3 {
  color: #C9A961;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #5A5A5A;
  margin: 0;
  line-height: 1.7;
}

/* Legal Pages */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
}

.legal-content h2 {
  color: #2C2C2C;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #C9A961;
  margin-top: 28px;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 24px;
}

.legal-content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Thank You Pages */
.thank-you-content {
  background: #FFF9F0;
  padding: 80px 20px;
  text-align: center;
}

.meanwhile {
  background: #FFFFFF;
  padding: 80px 20px;
}

.meanwhile h2 {
  text-align: center;
  margin-bottom: 32px;
}

.meanwhile ul {
  list-style: none;
  margin-left: 0;
}

.meanwhile ul li {
  margin-bottom: 16px;
}

.meanwhile ul li a {
  font-size: 17px;
  font-weight: 500;
}

.cta-secondary {
  background: #FFF9F0;
  padding: 80px 20px;
  text-align: center;
}

.cta-secondary h2 {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #2C2C2C;
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: #C9A961;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact,
.footer-nav,
.footer-legal {
  flex: 1 1 200px;
}

footer h3 {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 20px;
}

footer p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: #C9A961;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444444;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  border-top: 3px solid #C9A961;
}

.cookie-consent.active {
  display: block;
}

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  color: #3D3D3D;
  margin: 0;
  flex: 1 1 300px;
  font-size: 15px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: #C9A961;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #B89850;
  transform: translateY(-2px);
}

.cookie-reject {
  background: #F4F1EA;
  color: #2C2C2C;
}

.cookie-reject:hover {
  background: #E8E4DB;
}

.cookie-settings {
  background: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
}

.cookie-settings:hover {
  background: #C9A961;
  color: #FFFFFF;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F4F1EA;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #2C2C2C;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C9A961;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #2C2C2C;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF9F0;
  border-radius: 12px;
  border: 2px solid #F4F1EA;
}

.cookie-category h3 {
  color: #C9A961;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #5A5A5A;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #3D3D3D;
  cursor: pointer;
  font-size: 15px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-save {
  background: #C9A961;
  color: #FFFFFF;
}

.cookie-save:hover {
  background: #B89850;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .subheadline {
    font-size: 17px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .container {
    justify-content: center;
  }

  /* Sections */
  section {
    padding: 40px 16px;
  }

  .hero {
    padding: 60px 16px;
  }

  .hero-simple {
    padding: 40px 16px;
  }

  /* Grids */
  .services-grid,
  .features-grid,
  .values-grid,
  .testimonials-grid,
  .categories-grid,
  .workshops-grid {
    flex-direction: column;
  }

  .service-card,
  .feature,
  .value-card,
  .testimonial-card,
  .category-card,
  .workshop-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  /* Buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Contact */
  .contact-details {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Cookie Consent */
  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* CTA Banners */
  .cta-banner,
  .cta-portfolio,
  .cta-workshops {
    margin: 40px 16px;
    padding: 60px 20px;
  }

  .cta-banner h2,
  .cta-portfolio h2,
  .cta-workshops h2 {
    font-size: 32px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .subheadline {
    font-size: 16px;
  }

  .price-large {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }

  header {
    position: relative;
  }

  .cta-button,
  .btn-primary,
  .btn-secondary {
    border: 2px solid #2C2C2C;
  }
}