
*{
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;
}


.rsvp-section {
  padding: 30px 5%;
  margin-top: 80px;
}

.rsvp-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.rsvp-info-card,
.rsvp-form-card {
  border: 1px solid #e0d8c8;
  border-radius: 20px;
  padding: 40px 36px;
  background: white;
}

.rsvp-eyebrow {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 14px;
}

.rsvp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #1a2e22;
  line-height: 1.15;
  margin-bottom: 14px;
}

.rsvp-desc {
  font-size: 11.5px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 32px;
}

.rsvp-details {
  border-top: 1px solid #e0d8c8;
}

.rsvp-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #e0d8c8;
  gap: 20px;
}

.rsvp-detail-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
  flex-shrink: 0;
}

.rsvp-detail-value {
  font-size: 12px;
  color: #555;
  text-align: right;
  line-height: 1.5;
}

.rsvp-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: #1a2e22;
  line-height: 1.2;
  margin-bottom: 10px;
}

.rsvp-form-desc {
  font-size: 11.5px;
  color: #999;
  line-height: 1.65;
  margin-bottom: 28px;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rsvp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rsvp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rsvp-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
}

.rsvp-input {
  border: 1px solid #e0d8c8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #1a2e22;
  background: white;
  outline: none;
  font-family: Georgia, serif;
}

.rsvp-input:focus {
  border-color: #5a7a5c;
}

.rsvp-textarea {
  border: 1px solid #e0d8c8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #1a2e22;
  background: white;
  outline: none;
  font-family: Georgia, serif;
  height: 110px;
  resize: vertical;
}

.rsvp-textarea:focus {
  border-color: #5a7a5c;
}

.rsvp-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rsvp-submit-btn {
  background: #1e3d2f;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 13px 24px;
  font-size: 13px;
  font-family: Georgia, serif;
  cursor: pointer;
  white-space: nowrap;
}

.rsvp-submit-btn:hover {
  background: #162e23;
}

.rsvp-submit-note {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  max-width: 260px;
}

@media (max-width: 768px) {
  .rsvp-grid {
    grid-template-columns: 1fr;
  }

  .rsvp-form-row {
    grid-template-columns: 1fr;
  }

  .rsvp-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 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;
}

.menu-btn {
  display: none;
}

@media (max-width: 768px) {

  .menu-btn {
    display: flex;
  }

  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;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-right {
    text-align: left;
  }

}