:root {
  --primary: #FF5A5F;
  --secondary: #2D3436;
  --accent: #FFFFFF;
  --text-dark: #2D3436;
  --text-light: #636E72;
  --bg-light: #F9F9F9;
  --gradient: linear-gradient(135deg, #FF5A5F 0%, #FF9A8B 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}


h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  /* Removed absolute centering hack */
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

section {
  padding: 5rem 0;
}

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

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 90, 95, 0.6);
  background: #ff4146;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

.btn-plan {
  display: inline-block;
  background: var(--text-dark);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.btn-plan:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

/* Form Styling */
.email-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.max-logo {
  height: 60px;
  width: auto;
}

.logo h2 {
    margin: 0;
    text-align: left;
    font-size: 1.8rem;
    width: auto;
}

.logo h2::after {
    display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-dark);
}

.nav-links a.btn-primary {
    color: white;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.btn-primary:hover {
    color: white;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-light);
  padding-top: 80px;
}

.hero .container {
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
  left: auto;
  transform: none;
  display: block;
}

.hero-subtitle::after {
  content: none;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #ddd;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ff4146;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.2rem;
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: var(--text-light);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

/* About Section */
.about-section {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Services */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0;
}

.service-duration {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.service-link:hover {
  color: #ff4146;
}

.service-link i {
  font-size: 1rem !important; /* Override card icon style */
  margin-bottom: 0 !important;
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}


/* Gallery / Instagram Section (UPDATED) */
.gallery-section {
  padding-bottom: 2rem;
  background: #fff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
  gap: 15px; /* Spacing between images */
  max-width: 1000px;
  margin: 0 auto 3rem auto;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1; /* Square images */
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.05); /* Subtle zoom */
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  color: white;
  font-size: 2rem;
}

.shop-cta {
  text-align: center;
}

/* Pricing */
.pricing-section {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 90, 95, 0.15);
  transform: scale(1.05); /* This might break "height: 100%" equality in grid row if not careful, but usually okay */
  z-index: 10;
}

/* ... */

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.pricing-features i {
  color: var(--primary);
  margin-right: 10px;
}

/* Instagram Feed Section */
.instagram-feed-section {
  padding: 5rem 0;
  background: var(--bg-light);
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-top: -2rem; /* Pull closer to title */
  margin-bottom: 3rem;
  display: block;
}

.instagram-container {
  display: flex !important; /* Force flex */
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.instagram-container iframe {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
}

/* Book Now Section */
.book-now {
  background: white;
  text-align: center;
  padding: 5rem 0;
}

.book-content {
  max-width: 600px;
  margin: 0 auto;
}

.book-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.book-content h2::after {
  content: none;
}

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

.book-email {
  margin-top: 1rem;
  font-size: 1rem !important;
}

.book-email a {
  color: var(--primary);
  font-weight: 600;
}

/* Contact */
.contact {
  background: #2D3436;
  color: white;
  padding: 5rem 0;
}

.contact .section-title {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-card p, .contact-card a {
  color: #ccc;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-social a {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--primary);
  color: white;
}

/* Footer */
footer {
  background: #1a1e20;
  color: #888;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-brand h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary);
}

.back-to-top {
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h2 { font-size: 2rem; }
  h1 { font-size: 2.5rem; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .instagram-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
      gap: 10px;
  }
  
  .footer-content {
      text-align: center;
  }
  
  .footer-contact p {
      justify-content: center;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
  }
}
