:root {
  --blue-accent: #1f4b85;
  --blue-accent-dark: #1f3253;
  --blue-accent-light: #c3d8ef;
  --gold-accent: #8B7355;
  --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: #faf9f7;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-accent);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--blue-accent);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: #8B7355;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #4a4a4a;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,.9)),
    url('./foto/foto_ring.avif');
    background-size: cover;
    background-position: center 70%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--gold-accent);
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;

    color: var(--gold-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Welcome Section */
.welcome {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--blue-accent);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.welcome-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

.welcome-text p {
    margin-bottom: 25px;
}

/* Navigation Cards Section */
.nav-section {
    background: white;
    padding: 100px 40px;
}

.nav-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.nav-card {
    background: #faf9f7;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.nav-card:hover {
    background: var(--blue-accent-light);
    border: 1px solid #e5e5e5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
}

.nav-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold-accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-card:hover h3 {
    color: white;
}

.nav-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #faf9f7;
    color: #000000;
    text-align: center;
    padding: 60px 40px;
}

.footer p {
    margin-bottom: 10px;
    font-weight: 300;
    opacity: 0.9;
}

/* Content Sections - For other pages */
.content {
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 60px;
    border-radius: 0;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8B7355;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background: #faf9f7;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B7355;
    background: white;
}

.btn {
    background: var(--blue-accent);
    color: white;
    padding: 15px 40px;
    border: none;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: var(--blue-accent-dark);
    transform: translateY(-2px);
    border-radius: 5px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.info-card {
    background: white;
    padding: 40px;
    text-align: center;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #8B7355;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.photo-item {
    aspect-ratio: 4/3;
    background: #f5f5f5;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Code Input Section */
.code-section {
    margin-bottom: 80px;
    display: block;
}

.code-input-box {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 3px solid var(--gold-accent);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
}

.code-input-box h3 {
    color: var(--blue-accent-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 400;
}

.code-input-box p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.code-input-box input {
    width: 100%;
    padding: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    transition: border-color 0.3s ease;
    background: #faf9f7;
    margin-bottom: 25px;
}

.code-input-box input:focus {
    outline: none;
    border-color: var(--blue-accent-dark);
    background: white;
}

.code-input-box .btn {
    min-width: 250px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.code-input-box .help-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

/* Program sections - hidden by default until code is entered */
.program-section {
    margin-bottom: 80px;
    display: none; /* Hide by default */
}

.program-section.show {
    display: block; /* Show when code is valid */
}

.program-section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 40px;
    border-radius: 0;
}

.complete-day .program-section-header {
    background: var(--gold-accent);
    color: white;
    border-radius: 10px;
}

.evening-party .program-section-header {
    background: var(--blue-accent-dark);
    color: white;
    border-radius: 10px;
}

.program-section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.program-section-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

/* Remove timeline dots and line for cleaner look */
.timeline::before {
    display: none;
}

.timeline-time::before {
    display: none;
}

/* Clean timeline layout */

/* Timeline Styles */
.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-time {
    flex: 0 0 200px;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.timeline-time .time {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.timeline-time .period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 400;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold-accent);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--gold-accent);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.timeline-content p {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.7;
}

.timeline-content .location {
    font-weight: 400;
    color: var(--gold-accent);
    margin-top: 20px;
}

.timeline-content .note {
    font-style: italic;
    font-size: 0.95rem;
    color: #888;
    margin-top: 15px;
}

/* Evening section different colors */
.evening-party .timeline-time .time {
    color: var(--blue-accent-dark);
}

.evening-party .timeline-content {
    border-left-color: var(--blue-accent-dark);
}

.evening-party .timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right-color: var(--blue-accent-dark);
}

.evening-party .timeline-content h3 {
    color: var(--blue-accent-dark);
}

.evening-party .timeline-content .location {
    color: var(--blue-accent-dark);
}

.program-notes {
    margin: 80px 0;
}

.program-notes h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-accent);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.program-cta {
    margin: 80px 0 40px;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column !important;
        align-items: stretch;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        border-left: 4px solid #8B7355;
        border-right: none;
    }

    .evening-party .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid #2c3e50;
        border-right: none;
    }

    .timeline-time {
        flex: none;
        text-align: left;
        padding: 0;
        margin-bottom: 15px;
    }

    .timeline-time .time {
        font-size: 1.5rem;
        display: inline-block;
        margin-right: 15px;
    }

    .timeline-time .period {
        display: inline-block;
    }

    .timeline-content {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .program-intro {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .program-section-header {
        padding: 40px 25px;
    }

    .program-section-header h2 {
        font-size: 1.8rem;
    }

    .timeline-content {
        padding: 20px 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250, 249, 247, 0.98);
        flex-direction: column;
        padding: 20px 40px;
        gap: 20px;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .welcome {
        padding: 80px 20px;
    }

    .welcome h2 {
        font-size: 2rem;
    }

    .nav-section {
        padding: 60px 20px;
    }

    .nav-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-card {
        padding: 40px 25px;
    }

    .hero {
        background-attachment: scroll;
    }

    .content {
        padding: 100px 20px 60px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 40px 30px;
        margin: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 30px 20px;
    }
}

/* Gifts Page Styles */
.gifts-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

.gift-message, .personal-section, .thank-you-section {
    margin-bottom: 80px;
}

.message-card, .personal-card, .thank-you-card {
    background: white;
    padding: 60px 50px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-card h2, .personal-card h2, .thank-you-card h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #8B7355;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.message-card p, .personal-card p, .thank-you-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.message-card p:last-child, .personal-card p:last-child {
    margin-bottom: 0;
}

/* Gift Options Grid */
.gift-options {
    margin-bottom: 80px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: white;
    padding: 50px 40px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--blue-accent);
}

.option-card.main-option {
    border-left-color: var(--blue-accent);
    border-left-width: 6px;
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #8B7355;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.option-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Bank Details */
.bank-details {
    margin-top: 30px;
    padding: 30px;
    background: #faf9f7;
    border-radius: 5px;
}

.bank-details h4 {
    font-size: 1.1rem;
    color: #8B7355;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bank-info {
    font-family: 'Courier', monospace;
    font-size: 1rem;
    line-height: 1.6;
}

.bank-info p {
    margin-bottom: 8px;
    color: #333;
}

.bank-info strong {
    color: #8B7355;
    font-weight: 600;
}

/* Trip Details */
.trip-details {
    margin-top: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 5px;
}

.trip-details p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.trip-details em {
    color: #888;
    font-size: 0.95rem;
}

/* Wishlist */
.wishlist {
    margin-top: 25px;
    padding-left: 40px !important;
}

.wishlist ul {
    list-style: disc;
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 20px;
    color: #8B7355;
}

.wishlist li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    color: #666;
}

.wishlist li:last-child {
    border-bottom: none;
}

.wishlist-note {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 20px;
}

/* Signature */
.signature {
    margin-top: 40px;
    font-style: italic;
}

.signature p {
    margin-bottom: 5px;
}

.signature strong {
    color: #8B7355;
    font-size: 1.1rem;
}

/* Contact Card */
.gift-contact {
    margin-bottom: 60px;
}

.contact-card {
    background: #8B7355;
    color: white;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-card p {
    margin-bottom: 10px;
    opacity: 0.95;
}

/* Responsive Design for Gifts */
@media (max-width: 768px) {
    .message-card, .personal-card, .thank-you-card {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .option-card {
        padding: 35px 25px;
        margin: 0 15px;
    }

    .options-grid {
        gap: 30px;
    }

    .bank-details, .trip-details {
        padding: 20px;
        margin-top: 20px;
    }

    .gifts-intro {
        font-size: 1.1rem;
        margin-bottom: 60px;
        padding: 0 20px;
    }

    .contact-card {
        margin: 0 20px;
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .message-card h2, .personal-card h2, .thank-you-card h2 {
        font-size: 1.6rem;
    }

    .option-card h3 {
        font-size: 1.3rem;
    }

    .bank-info {
        font-size: 0.9rem;
    }

    .message-card, .personal-card, .thank-you-card {
        padding: 30px 20px;
    }

    .option-card {
        padding: 25px 20px;
    }
}

/* RSVP Page Styles */
.rsvp-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

.rsvp-code-section {
    margin-bottom: 80px;
}

.rsvp-form-section {
    margin-bottom: 80px;
}

.rsvp-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Guest Info Display */
.guest-info-display {
    margin-bottom: 40px;
}

.guest-welcome {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    border-left: 4px solid var(--blue-accent);
}

.guest-welcome h3 {
    color: var(--gold-accent);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.guest-welcome p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: #8B7355;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #faf9f7;
}

.radio-label:hover {
    border-color: #8B7355;
    background: white;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--blue-accent-dark);
    background: white;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-accent-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:checked {
    background: white;
}

/* Form Inputs */
.rsvp-form input[type="text"],
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 5px;
    background: #faf9f7;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.rsvp-form input[type="text"]:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: #8B7355;
    background: white;
}

.rsvp-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Plus One Sections */
.plus-one-section,
.plus-one-details,
.plus-one-dietary {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid var(--blue-accent);
}

/* Remove border for couple flow to avoid visual clutter */
.plus-one-section {
    border-left: none;
    padding-left: 0;
    background: transparent;
}

.plus-one-section > div {
    background: #f8f9fa;
    border-left: 4px solid var(--blue-accent);
    padding: 30px;
    border-radius: 5px;
}

.attendance-details,
.decline-details {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Button Styles */
.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Success Message */
.rsvp-success {
    margin-bottom: 80px;
}

.success-card {
    background: white;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 3px solid #8B7355;
}

.success-card h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--blue-accent);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.success-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Design for RSVP */
@media (max-width: 768px) {
    .rsvp-form {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .success-card {
        padding: 40px 30px;
        margin: 0 20px;
    }

    .radio-group {
        gap: 12px;
    }

    .radio-label {
        padding: 12px;
        font-size: 1rem;
    }

    .plus-one-section,
    .plus-one-details,
    .plus-one-dietary,
    .attendance-details,
    .decline-details {
        padding: 20px;
        margin-top: 20px;
    }

    .guest-welcome {
        padding: 20px;
    }

    .rsvp-intro {
        font-size: 1.1rem;
        margin-bottom: 60px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .rsvp-form {
        padding: 30px 20px;
    }

    .success-card {
        padding: 30px 20px;
    }

    .success-card h2 {
        font-size: 1.8rem;
    }

    .guest-welcome h3 {
        font-size: 1.2rem;
    }

    .form-group {
        margin-bottom: 30px;
    }

    .radio-label {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px;
    }

    .radio-custom {
        margin-right: 10px;
        margin-top: 2px;
    }
}