:root {
    --wedding-navy: #1A2942;
    --wedding-cream: #F9F6F0;
    --wedding-gold: #D4AF37;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    background-color: var(--wedding-cream);
    color: var(--wedding-navy);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
  }
  
  .container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  .header {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    background-color: var(--wedding-navy);
    overflow: hidden;
  }
  
  .header-bg {
    position: absolute;
    inset: 0;
    background-image: url('bkg.png');
    background-size: cover;
    opacity: 0.3;
  }
  
  .header-content {
    position: relative;
    z-index: 10;
    animation: fadeIn 1s ease-in;
  }
  
  .header h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 8px;
  }
  
  .header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .header .date {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }
  
  .header .subtitle {
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
  }
  
  .divider {
    width: 100px;
    height: 2px;
    background-color: var(--wedding-gold);
    margin: 24px auto;
  }
  
  /* Sections */
  .section {
    padding-top: 64px;
  }
  
  .section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 32px;
  }
  
  /* Introduction */
  #introduction p {
    text-align: center;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Ornament */
  .ornament {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0;
  }
  
  .ornament::before,
  .ornament::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--wedding-gold);
    margin: 0 16px;
  }
  
  .ornament span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--wedding-gold);
    font-family: 'Times New Roman', serif;
    font-style: italic;
    transform: rotate(45deg);
  }
  
  /* Locations */
  .location-intro {
    text-align: center;
    margin-bottom: 24px;
  }
  
  .location-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .location-link {
    display: inline-block;
    color: var(--wedding-navy);
    text-decoration: underline;
    margin-bottom: 16px;
    transition: color 0.3s;
  }
  
  .location-link:hover {
    color: var(--wedding-gold);
  }
  
  .location-card {
    margin-bottom: 32px;
    padding: 24px;
    background-color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
  }
  
  .location-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--wedding-gold);
  }
  
  .location-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .location-card .time {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--wedding-gold);
    margin-bottom: 12px;
  }
  
  .location-card .address {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
  
  .location-card .description {
    margin: 16px 0;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 16px;
  }
  
  .highlighted {
    background-color: rgba(249, 246, 240, 0.5);
    border-color: rgba(212, 175, 55, 0.5);
  }
  
  /* Dress Code */
  .dark {
    background-color: var(--wedding-navy);
    color: white;
    padding-bottom: 64px;
  }
  
  .dress-code-intro {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .dress-code-intro h3 {
    font-size: 1.5rem;
    color: var(--wedding-gold);
    margin-bottom: 8px;
  }
  
  .dress-code-intro .italic {
    font-style: italic;
    margin-bottom: 32px;
  }
  
  .dress-code-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .dress-code-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
  }
  
  .dress-code-card h4 {
    font-size: 1.2rem;
    color: var(--wedding-gold);
    margin-bottom: 16px;
  }
  
  .dress-code-card ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .dress-code-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  
  /* RSVP */
  .rsvp-container {
    background-color: var(--wedding-cream);
    padding: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .rsvp-info {
    text-align: center;
    margin-bottom: 24px;
    font-size: 0.9rem;
  }
  
  .rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  
  .form-group input[type="text"], 
  .form-group input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
  }
  
  .form-group input[type="text"]:focus, 
  .form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--wedding-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  }
  
  .radio-group {
    margin-top: 12px;
  }
  
  .radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .radio-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--wedding-gold);
  }
  
  .radio-option label {
    margin-bottom: 0;
    cursor: pointer;
  }
  
  button[type="submit"] {
    background-color: var(--wedding-gold);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
  }
  
  button[type="submit"]:hover {
    background-color: rgba(212, 175, 55, 0.8);
  }
  
  /* Toast message */
  .toast {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #22C55E;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .toast .toast-title {
    font-weight: bold;
  }
  
  .toast .toast-message {
    font-size: 0.875rem;
  }
  
  .fade-in {
    opacity: 1;
  }
  
  .fade-out {
    opacity: 0;
  }
  
  /* Footer */
  footer {
    background-color: var(--wedding-navy);
    color: white;
    padding: 40px 0;
    text-align: center;
  }
  
  footer h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  footer p {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  
  .date-footer {
    opacity: 0.7;
    margin-top: 24px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .header h1 {
      font-size: 3rem;
    }
    
    .header h2 {
      font-size: 2.5rem;
    }
    
    .header .date {
      font-size: 1.5rem;
    }
    
    .header .subtitle {
      font-size: 1rem;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
    
    .dress-code-container {
      flex-direction: row;
      gap: 32px;
    }
    
    .dress-code-card {
      flex: 1;
    }
  }
  
  @media (max-width: 640px) {
    .ornament span {
      width: 24px;
      height: 24px;
    }
  }

  .side-by-side {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.column {
    flex: 1;
    min-width: 200px;
}

.section-title {
    margin-bottom: 0.5rem;
}

.location-intro h3 {
    margin: 0.25rem 0;
}

.name-frame {
  border: black 1px;
  border-style: dashed;
  padding: 1px 6px 1px 6px;
}