/* Her Legacy - Styles.css */

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

:root {
  --gold-primary: #d4af37;
  --gold-light: #f4e4c1;
  --gold-dark: #c9a961;
  --pink-soft: #ffe5f0;
  --pink-medium: #ffd6e8;
  --pink-accent: #ffb8d9;
  --black: #1a1a1a;
  --white: #fefefe;
  --cream: #fff8f0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Cursor */
body {
  cursor: none;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 5%;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a.active {
  color: var(--gold-primary);
  font-weight: 400;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 100%);
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
        /* Lipstick kiss marks pattern */ radial-gradient(
      ellipse 30px 20px at 10% 15%,
      rgba(255, 184, 217, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 25px 18px at 85% 25%,
      rgba(212, 175, 55, 0.06),
      transparent
    ),
    radial-gradient(
      ellipse 28px 19px at 45% 70%,
      rgba(255, 184, 217, 0.07),
      transparent
    ),
    radial-gradient(
      ellipse 32px 21px at 75% 80%,
      rgba(212, 175, 55, 0.05),
      transparent
    ),
    radial-gradient(
      ellipse 26px 17px at 20% 50%,
      rgba(255, 214, 232, 0.06),
      transparent
    ),
    /* Art Deco lines */
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(212, 175, 55, 0.02) 80px,
        rgba(212, 175, 55, 0.02) 81px
      ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255, 214, 232, 0.02) 80px,
      rgba(255, 214, 232, 0.02) 81px
    );
  pointer-events: none;
  opacity: 0.8;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
  animation: fadeInUp 1s ease;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 250px;
  height: 250px;
  margin: 0 auto 1.5rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.3em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.hero .subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.6s backwards;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-primary);
  animation: fadeInUp 1s ease 0.9s backwards;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transition: left 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid var(--gold-primary);
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Art Deco Decorative Elements */

/* Sunburst Decorations */
.deco-sunburst {
  position: absolute;
  width: 150px;
  height: 150px;
  animation: pulse 4s ease-in-out infinite;
}

.deco-sunburst::before,
.deco-sunburst::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deco-sunburst::before {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.deco-sunburst::after {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1),
    0 0 0 16px rgba(212, 175, 55, 0.05), 0 60px 0 -10px rgba(212, 175, 55, 0.3),
    0 -60px 0 -10px rgba(212, 175, 55, 0.3),
    60px 0 0 -10px rgba(212, 175, 55, 0.3),
    -60px 0 0 -10px rgba(212, 175, 55, 0.3),
    42px 42px 0 -10px rgba(212, 175, 55, 0.2),
    -42px -42px 0 -10px rgba(212, 175, 55, 0.2),
    42px -42px 0 -10px rgba(212, 175, 55, 0.2),
    -42px 42px 0 -10px rgba(212, 175, 55, 0.2);
}

.deco-sun-1 {
  top: 8%;
  right: 12%;
  animation-delay: 0s;
}

.deco-sun-2 {
  bottom: 20%;
  left: 8%;
  animation-delay: 2s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Diamond Shapes */
.deco-diamond {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 214, 232, 0.4),
    rgba(212, 175, 55, 0.3)
  );
  transform: rotate(45deg);
  animation: float-rotate 8s ease-in-out infinite;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.deco-dia-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.deco-dia-2 {
  top: 70%;
  right: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 1.5s;
}

.deco-dia-3 {
  top: 45%;
  right: 10%;
  width: 25px;
  height: 25px;
  animation-delay: 3s;
}

@keyframes float-rotate {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-30px) rotate(225deg);
  }
}

/* Floating Lipstick Silhouettes */
.floating-lipstick {
  position: absolute;
  width: 60px;
  height: 80px;
  opacity: 0.15;
  animation: float-drift 12s ease-in-out infinite;
}

.floating-lipstick::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  background: linear-gradient(180deg, var(--pink-medium), var(--gold-primary));
  border-radius: 0 0 5px 5px;
}

.floating-lipstick::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid var(--pink-accent);
}

.lip-1 {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.lip-2 {
  bottom: 25%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(-10px) translateX(-10px);
  }
}

/* Art Deco Fan Shapes */
.deco-fan {
  position: absolute;
  width: 120px;
  height: 60px;
  overflow: hidden;
  animation: fan-wave 10s ease-in-out infinite;
}

.deco-fan::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 180deg at 50% 100%,
    transparent 0deg,
    rgba(212, 175, 55, 0.1) 30deg,
    rgba(255, 214, 232, 0.2) 60deg,
    rgba(212, 175, 55, 0.15) 90deg,
    transparent 120deg
  );
  border-radius: 50%;
}

.fan-1 {
  top: 30%;
  left: 5%;
  animation-delay: 0s;
}

.fan-2 {
  bottom: 35%;
  right: 8%;
  transform: scaleX(-1);
  animation-delay: 3s;
}

@keyframes fan-wave {
  0%,
  100% {
    transform: rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: rotate(10deg);
    opacity: 0.6;
  }
}

/* Shimmer Particles */
.shimmer-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  border-radius: 50%;
  animation: shimmer-float 6s ease-in-out infinite;
  opacity: 0;
}

.particle-1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  right: 25%;
  animation-delay: 1.2s;
}

.particle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2.4s;
}

.particle-4 {
  top: 60%;
  right: 35%;
  animation-delay: 3.6s;
}

.particle-5 {
  bottom: 45%;
  left: 40%;
  animation-delay: 4.8s;
}

@keyframes shimmer-float {
  0%,
  100% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50px) scale(1.5);
    opacity: 1;
  }
}

/* Page Header (for non-home pages) */
.page-header {
  padding: 10rem 5% 5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-soft) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
        /* Lipstick pattern */ radial-gradient(
      ellipse 20px 15px at 15% 20%,
      rgba(255, 184, 217, 0.1),
      transparent
    ),
    radial-gradient(
      ellipse 18px 13px at 80% 30%,
      rgba(212, 175, 55, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 22px 16px at 50% 75%,
      rgba(255, 184, 217, 0.09),
      transparent
    ),
    /* Diagonal Art Deco lines */
      repeating-linear-gradient(
        135deg,
        transparent,
        transparent 60px,
        rgba(212, 175, 55, 0.03) 60px,
        rgba(212, 175, 55, 0.03) 61px
      );
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

/* Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  color: var(--gold-dark);
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}

/* Featured Section (Home Page) */
.featured {
  padding: 8rem 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: conic-gradient(
    from 90deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.05) 30deg,
    rgba(255, 214, 232, 0.08) 60deg,
    rgba(212, 175, 55, 0.06) 90deg,
    transparent 120deg
  );
  border-radius: 50%;
  pointer-events: none;
}

.featured::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scaleX(-1);
  width: 200px;
  height: 200px;
  background: conic-gradient(
    from 90deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.05) 30deg,
    rgba(255, 214, 232, 0.08) 60deg,
    rgba(212, 175, 55, 0.06) 90deg,
    transparent 120deg
  );
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  font-weight: 300;
  line-height: 1.8;
}

/* Preview About Section (Home Page) */
.preview-about {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
}

.preview-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.preview-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.preview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 300;
}

.preview-image {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-medium));
  border: 3px solid var(--gold-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.preview-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about {
  padding: 8rem 5%;
  background: var(--white);
  position: relative;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-image {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-medium));
  border: 3px solid var(--gold-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  z-index: -1;
}

/* Values Section (About Page) */
.values {
  padding: 8rem 5%;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.value-card {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
}

.value-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.value-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
}

/* Story Section (About Page) */
.story {
  padding: 8rem 5%;
  background: var(--cream);
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  height: 500px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-medium));
  border: 3px solid var(--gold-primary);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.story-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.story-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Commitment Section (About Page) */
.commitment {
  padding: 8rem 5%;
  background: var(--white);
}

.commitment-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.commitment-item {
  padding: 2rem;
  text-align: center;
  background: var(--cream);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.commitment-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.commitment-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.commitment-item p {
  color: #555;
  font-weight: 300;
}

/* Gallery Section */
.gallery {
  padding: 8rem 5%;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--pink-soft) 50%,
    var(--cream) 100%
  );
}

.gallery-filter {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--white);
  border: 3px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.collection-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Placeholder for gallery images */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-medium));
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

/* CTA Section (Gallery Page) */
.cta-section {
  padding: 6rem 5%;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
        /* Scattered lipstick kiss marks */ radial-gradient(
      ellipse 40px 25px at 20% 30%,
      rgba(255, 184, 217, 0.12),
      transparent
    ),
    radial-gradient(
      ellipse 35px 22px at 75% 25%,
      rgba(212, 175, 55, 0.1),
      transparent
    ),
    radial-gradient(
      ellipse 38px 24px at 60% 70%,
      rgba(255, 184, 217, 0.11),
      transparent
    ),
    radial-gradient(
      ellipse 42px 26px at 85% 75%,
      rgba(212, 175, 55, 0.09),
      transparent
    ),
    radial-gradient(
      ellipse 36px 21px at 15% 65%,
      rgba(255, 214, 232, 0.1),
      transparent
    );
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-primary),
    transparent
  );
  opacity: 0.3;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.cta-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Contact Section */
.contact {
  padding: 8rem 5%;
  background: var(--white);
  position: relative;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.contact-info > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #333;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold-primary);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-text span {
  color: #555;
}

.social-contact {
  margin-top: 2rem;
}

.social-contact h4 {
  font-family: "Playfair Display", serif;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links-contact a {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
  background: var(--cream);
  padding: 3rem;
  border: 2px solid var(--gold-primary);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: -1;
}

.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  background: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.submit-button {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--white);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transition: left 0.5s ease;
  z-index: 0;
}

.submit-button:hover::before {
  left: 0;
}

.submit-button:hover {
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.submit-button span {
  position: relative;
  z-index: 1;
}

/* FAQ Section (Contact Page) */
.faq {
  padding: 8rem 5%;
  background: var(--cream);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  font-weight: 300;
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold-primary);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
  font-weight: 300;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: 2px solid var(--gold-light);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* Animation for elements on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
  }

  .hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .about-content,
  .contact-container,
  .preview-content,
  .story-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
  }

  .hero-logo {
    width: 160px;
    height: 160px;
    margin-bottom: 0.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }
}
