
*{
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;
}

/* 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 {
  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);
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#1e3d32;
font-size:14px;
}

.party-hero-section {
  padding: 150px 5%;
  margin-top: 60px;
}

.party-hero-card {
  border: 1px solid #e0d8c8;
  border-radius: 20px;
  padding: 48px 52px;
  background: radial-gradient(ellipse at 70% 50%, #e8e4c8 0%, #f4f1ea 60%);
}

.party-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 14px;
  margin-top: 12px;
  line-height: 1.15;
}

.party-hero-sub {
  font-size: 13px;
  color: #5a6a5a;
  max-width: 560px;
  line-height: 1.6;
}

.party-group-section {
  padding: 40px 5%;
}

.party-group-couple {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 8px;
}

.party-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 6px;
}

.party-group-sub {
  font-size: 12px;
  color: #999;
  margin-bottom: 28px;
}

.party-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.party-member-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.party-member-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

.party-member-info {
  background: white;
  border: 1px solid #e0d8c8;
  border-radius: 14px;
  padding: 14px 16px;
}

.party-member-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.party-member-name {
  font-size: 12px;
  color: #1a2e22;
  font-weight: 500;
}

.party-member-role {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 6px;
}

.party-member-bio {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  font-style: italic;
}







/* 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 */
  .party-hero-section {
    padding: 90px 5% 40px;
  }

  .party-hero-card {
    padding: 32px 28px;
  }

  .party-hero-title {
    font-size: 1.8rem;
  }

  /* PARTY GRID */
  .party-group-grid {
    grid-template-columns: 1fr;
  }

  .party-member-card img {
    height: 260px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-right {
    text-align: left;
  }

}

@media (max-width: 480px) {

  nav {
    padding: 14px 5%;
  }

  .party-hero-card {
    padding: 24px 20px;
  }

  .party-hero-title {
    font-size: 1.5rem;
  }

  .party-group-title {
    font-size: 1.6rem;
  }

}

@media (max-width: 1024px) {

  .party-group-grid {
    grid-template-columns: 1fr 1fr;
  }

}


