/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #f7f5f2;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 3px solid #3cb371;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #2e8b57;
    text-decoration: none;
    font-weight: 700;
}

.nav-cactus {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 24px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: #f0faf4;
    color: #2e8b57;
}

.nav-links a.active {
    background: #e8f5ec;
    color: #2e8b57;
    font-weight: 700;
}

.link-cactus {
    flex-shrink: 0;
}

/* ===== Hero (Home) ===== */
.hero {
    padding: 100px 24px 40px;
    background: #f7f5f2;
    text-align: center;
}

.hero-invite {
    max-width: 100%;
    width: 750px;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.08);
}

/* ===== Party Info ===== */
.party-info {
    padding: 60px 0;
    background: #fff;
}

.info-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}

.couple-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.info-details h2 {
    font-size: 2.2rem;
    color: #2e8b57;
    margin-bottom: 12px;
}

.info-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.7;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #3cb371;
}

.info-value {
    font-size: 1.05rem;
    color: #333;
}

.info-extra {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* ===== RSVP ===== */
.rsvp {
    padding: 60px 0 80px;
    background: #f7f5f2;
}

.rsvp-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    border: 3px solid #e8f5ec;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.rsvp-cacti {
    margin-bottom: 20px;
}

.rsvp-card h2 {
    font-size: 2rem;
    color: #2e8b57;
    margin-bottom: 8px;
}

.rsvp-card p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.rsvp-button {
    display: inline-block;
    padding: 14px 44px;
    background: #3cb371;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(60, 179, 113, 0.3);
}

.rsvp-button:hover {
    background: #2e8b57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 179, 113, 0.4);
}

/* ===== Page Header (subpages) ===== */
.page-header {
    padding: 110px 24px 50px;
    background: #fff;
    text-align: center;
    border-bottom: 3px solid #e8f5ec;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2e8b57;
    margin-bottom: 8px;
}

.page-header p {
    color: #888;
    font-size: 1.1rem;
}

/* ===== Hotels ===== */
.hotels-section {
    padding: 48px 0 80px;
    background: #f7f5f2;
}

.hotel-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.hotel-card:hover {
    transform: translateY(-3px);
}

.hotel-card.featured {
    border: 3px solid #ff69b4;
    margin-bottom: 36px;
    position: relative;
}

.hotel-card-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.hotel-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: #ff69b4;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 18px;
    border-radius: 20px;
    z-index: 1;
}

.hotel-img-wrap {
    height: 200px;
    overflow: hidden;
    background: #e8f5ec;
}

.hotel-card.featured .hotel-img-wrap {
    height: 100%;
    min-height: 240px;
}

.hotel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5ec 0%, #d4edda 100%);
    position: relative;
}

.hotel-img-placeholder::after {
    content: '';
    width: 40px;
    height: 60px;
    background: #3cb371;
    border-radius: 20px;
    opacity: 0.3;
}

.hotel-info {
    padding: 24px;
}

.hotel-card.featured .hotel-info {
    padding: 28px 32px;
}

.hotel-info h3 {
    font-size: 1.2rem;
    color: #2e8b57;
    margin-bottom: 6px;
}

.hotel-tier {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.hotel-tier.luxury {
    background: #fff3e0;
    color: #e65100;
}

.hotel-tier.mid {
    background: #e8f5ec;
    color: #2e7d32;
}


.hotel-info p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.hotel-special {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff0f5;
    border: 1px solid #ffcce0;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
}

.hotel-special svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.hotel-special span {
    font-size: 0.88rem;
    color: #c2185b;
    line-height: 1.5;
}

.hotel-link {
    display: inline-block;
    color: #3cb371;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.hotel-link:hover {
    color: #2e8b57;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.hotels-note {
    margin-top: 40px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 48px 0 80px;
    background: #f7f5f2;
}

.faq-container {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid #e5e0da;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #2e8b57;
    text-align: left;
    line-height: 1.4;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0faf4;
}

.faq-toggle {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    color: #ff69b4;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #3cb371;
    font-weight: 700;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== Activities ===== */
.activities-section {
    padding: 48px 0 80px;
    background: #f7f5f2;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.activity-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.activity-card h3 {
    font-size: 1.2rem;
    color: #2e8b57;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f5ec;
}

.activity-card p {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.activity-list {
    list-style: none;
    text-align: left;
}

.activity-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0ede8;
    font-size: 0.95rem;
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list a {
    color: #2e8b57;
    text-decoration: none;
    font-weight: 700;
}

.activity-list a:hover {
    text-decoration: underline;
}

.activity-tag {
    font-size: 0.72rem;
    background: #e8f5ec;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 10px;
    font-style: italic;
    white-space: nowrap;
}

.activities-note {
    margin-top: 40px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== Coming Soon ===== */
.coming-soon {
    padding: 48px 0;
    background: #fff;
    text-align: center;
    border-top: 3px solid #e8f5ec;
}

.coming-soon p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #2e8b57;
}

/* ===== Footer ===== */
footer {
    padding: 36px 0;
    background: #fff;
    text-align: center;
    border-top: 3px solid #e8f5ec;
}

footer p {
    color: #aaa;
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .info-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .info-photo {
        max-width: 260px;
        margin: 0 auto;
    }

    .info-details h2 {
        font-size: 1.8rem;
    }

    .hotel-card-inner {
        grid-template-columns: 1fr;
    }

    .hotel-card.featured .hotel-img-wrap {
        height: 200px;
    }

    .hotel-card.featured .hotel-info {
        padding: 24px 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.92rem;
    }

    .party-info {
        padding: 40px 0;
    }

    .rsvp {
        padding: 40px 0 60px;
    }

    .hotels-section {
        padding: 32px 0 60px;
    }

    .page-header {
        padding: 100px 20px 40px;
    }
}

@media (max-width: 600px) {
    .site-nav {
        padding: 8px 0;
    }

    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .nav-logo {
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a {
        padding: 6px 10px;
        font-size: 0.82rem;
        gap: 4px;
    }

    .link-cactus {
        width: 18px !important;
        height: 26px !important;
    }

    .nav-cactus {
        width: 24px !important;
        height: 32px !important;
    }

    .hero {
        padding: 110px 16px 32px;
    }

    .hero-invite {
        border-radius: 10px;
    }

    .info-details h2 {
        font-size: 1.5rem;
    }

    .info-subtitle {
        font-size: 1rem;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .hotel-info h3 {
        font-size: 1.05rem;
    }

    .hotel-special {
        padding: 10px 12px;
    }

    .hotel-special span {
        font-size: 0.82rem;
    }

    .rsvp-card {
        padding: 36px 20px;
    }

    .rsvp-card h2 {
        font-size: 1.6rem;
    }

    .rsvp-button {
        padding: 12px 36px;
        font-size: 1.05rem;
    }

    .page-header {
        padding: 90px 16px 32px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .faq-section {
        padding: 32px 0 60px;
    }
}
