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

:root {
  --navy: #0d1b35;
  --navy-mid: #162444;
  --navy-light: #1e3263;
  --silver: #c8d0df;
  --silver-bright: #e8ecf4;
  --silver-dim: #8a94a8;
  --white: #f5f7fc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--silver);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(13, 27, 53, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 208, 223, 0.12);
}

.nav-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--silver-bright);
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero {
    background-image: url('images/260420%20La%20Petite%20Photo%20Bella%20%2B%20Harrison%20Proposal%20Griffith%20Observatory%20Los%20Angeles-116.jpg') !important;
    background-position: 58% center;
    justify-content: flex-start;
    padding-top: 7rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 40, 0.62);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--silver-dim);
}

.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 0.3rem;
}

.hero-ampersand {
  font-style: italic;
  color: var(--silver);
  font-size: 0.55em;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver-dim), transparent);
  margin: 2rem auto;
  position: relative;
}

.hero-divider::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  color: var(--silver-dim);
  background: var(--navy);
  padding: 0 0.4rem;
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.hero-location {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.hero-cta {
  margin-top: 3.5rem;
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid rgba(200, 208, 223, 0.7);
  color: var(--white);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-cta:hover {
  background: rgba(200, 208, 223, 0.1);
  border-color: rgba(200, 208, 223, 0.6);
}

/* SECTION */
.section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--silver-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* GALLERY PAGE */
.gallery-hero {
  padding-top: 8rem;
  padding-bottom: 2rem;
  text-align: center;
}

.gallery-embed-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-embed-wrapper iframe {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border: none;
  border-radius: 4px;
  display: block;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--silver-dim);
  border-top: 1px solid rgba(200, 208, 223, 0.1);
}

footer span {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero-cta {
    margin-top: 2.5rem;
  }
}
