
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Georgia, serif;
}

a {
    text-decoration: none;
    color: #1e3d32;
}

body{
background:#f4f1ea;
color:#1e3d32;
line-height:1.5;
}

.menu-btn {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1e3d32;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* NAVBAR */

nav{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
z-index:1000;
background: #ffffffd9;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}

nav .logo{
font-weight:bold;
font-size:18px;
}

.menu-btn {
  cursor: pointer;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#1e3d32;
font-size:14px;
}

/* HERO */
.couple-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  margin-top: 60px;
}

.couple-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.couple-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 30, 15, 0.65) 0%, rgba(10,30,15,0.15) 100%);
  z-index: 1;
}

.couple-hero-text {
  position: absolute;
  bottom: 36px;
  left: 5%;
  z-index: 2;
  color: white;
}

.couple-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 10px;
}

.couple-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}

.couple-hero-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* DETAILS CARD */
.couple-section {
  padding: 16px 5%;
}

.couple-details-card {
  border: 1px solid #e0d8c8;
  border-radius: 16px;
  background: white;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cd-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 10px;
}

.cd-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 10px;
}

.cd-info {
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
  line-height: 1.6;
}

.cd-notice {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  margin-top: 12px;
}

.cd-right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-dark {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background: #1e3d2f;
  color: white;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-dark:hover {
  background: #2a5a40;
}

.btn-ghost {
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #d0c8b8;
  background: white;
  color: #444;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: #1e3d2f;
  color: #1e3d2f;
}

.love-story-card {
  border: 1px solid #e0d8c8;
  border-radius: 16px;
  background: white;
  padding: 32px 36px;
}

.love-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #1a2e22;
  margin-bottom: 14px;
  line-height: 1.2;
}

.love-story-text {
  font-size: 12.5px;
  color: #888;
  line-height: 1.7;
}

.rsvp-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #e0d8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.bridal-section {
  padding: 40px 5%;
}

.bridal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  color: #1a2e22;
  max-width: 580px;
  line-height: 1.25;
  margin-bottom: 8px;
  margin-top: 10px;
}

.bridal-sub {
  font-size: 12px;
  color: #999;
  margin-bottom: 32px;
}

.bridal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}

.bridal-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bridal-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  display: block;
}

.bridal-name-tag {
  background: white;
  border: 1px solid #e0d8c8;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bridal-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #e0d8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f8f5f0;
}

.bridal-name-tag p {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

.gallery-section {
  padding: 40px 5%;
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  color: #1a2e22;
  max-width: 580px;
  line-height: 1.25;
  margin-bottom: 8px;
  margin-top: 10px;
}

.gallery-sub {
  font-size: 12px;
  color: #999;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.gallery-col-left,
.gallery-col-mid,
.gallery-col-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gallery-tall {
  height: 300px;
}

.gallery-small {
  height: 180px;
}

.gallery-mid-tall {
  height: 260px;
}


/* FOOTER */

footer {
  background: #0e2d1e;
  border-top: none;
  padding: 44px 8%;
  margin-top: 0;
}

.footer-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
  max-width: 420px;
  line-height: 1.3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  line-height: 1.65;
}

.footer-right {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 2;

}

.footer-right p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  /* NAV */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  nav ul.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  /* HERO */
  .couple-hero {
    height: 260px;
  }

  .couple-hero-title {
    font-size: 2rem;
  }

  /* DETAILS CARD */
  .couple-details-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cd-right {
    width: 100%;
    flex-wrap: nowrap;
  }

  .btn-dark, .btn-ghost {
    flex: 1;
    text-align: center;
  }

  /* BRIDAL GRID */
  .bridal-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-col-left,
  .gallery-col-mid,
  .gallery-col-right {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gallery-img {
    flex: 1;
    min-width: 140px;
  }

  .gallery-tall,
  .gallery-mid-tall,
  .gallery-small {
    height: 160px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-right {
    text-align: left;
  }

}

@media (max-width: 480px) {

  .bridal-grid {
    grid-template-columns: 1fr;
  }

  .cd-right {
    flex-direction: column;
  }

  .btn-dark, .btn-ghost {
    text-align: center;
  }

  .couple-hero-title {
    font-size: 1.6rem;
  }

  nav {
    padding: 14px 5%;
  }

}