/* ============================================
   THE KORIE COLLECTION - Global Styles
   Luxe & Dramatic Wedding Planning
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-black: #0a0a0a;
  --color-charcoal: #1a1a1a;
  --color-dark: #2c2c2c;
  --color-gold: #c9a96e;
  --color-gold-light: #d4b97a;
  --color-gold-dark: #b8944f;
  --color-cream: #faf6f0;
  --color-white: #ffffff;
  --color-burgundy: #6b2737;
  --color-emerald: #2d5a47;
  --color-navy: #1a2744;
  --color-plum: #4a2040;
  --color-text: #333333;
  --color-text-light: #888888;
  --color-overlay: rgba(10, 10, 10, 0.55);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

  --max-width: 1280px;
  --nav-height: 80px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--color-charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--color-gold-light);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

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

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-charcoal);
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border-top: 2px solid var(--color-gold);
  margin-top: 0.75rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-gold);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.6) 100%
  );
}

.page-hero .hero-content h1 {
  font-size: 3.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-dark:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ---------- Section Styling ---------- */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.section-cream {
  background: var(--color-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .overline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.6);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img {
  height: 280px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-body p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--color-gold-dark);
}

.card-link::after {
  content: '\2192';
  transition: transform var(--transition);
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ---------- Pricing Tables ---------- */
.pricing-card {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid #eee;
  position: relative;
  transition: all var(--transition);
}

.pricing-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.4rem 1.5rem;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-gold);
  margin: 1rem 0;
}

.pricing-card .price small {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.pricing-card .price-note {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* ---------- Venue Cards ---------- */
.venue-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venue-card:hover img {
  transform: scale(1.08);
}

.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--color-white);
}

.venue-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.venue-overlay .venue-location {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.venue-overlay p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.venue-card:hover .venue-overlay p {
  max-height: 100px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.3);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.filter-btn {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: none;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.05);
}

/* ---------- Testimonials ---------- */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.testimonial cite {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-style: normal;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-section .hero-bg::after {
  background: rgba(10,10,10,0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.footer ul a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}

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

.social-links a {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* ---------- Service Detail Pages ---------- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-intro-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.service-intro-text .overline {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.service-intro-text p {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.service-intro-img {
  height: 500px;
  overflow: hidden;
}

.service-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.feature-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.process-step {
  padding: 2rem 1.5rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .service-intro { grid-template-columns: 1fr; gap: 2rem; }
  .service-intro-img { height: 350px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .page-hero .hero-content h1 { font-size: 2.4rem; }
  .section-header h2 { font-size: 2.2rem; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .pricing-card.featured { transform: none; }
  .cta-content h2 { font-size: 2.2rem; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-charcoal);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition);
  }

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding-left: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { columns: 1; }
  .process-steps { grid-template-columns: 1fr; }
}
