/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --accent-color: #f5e6d3;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #fafafa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 45px;
}

.lang-btn:hover {
    background-color: var(--accent-color);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(139, 111, 71, 0.3) 100%), url("../assets/images/gate1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-date {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-rsvp-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-rsvp-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(139, 111, 71, 0.3) 100%), url("../assets/images/lake1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    padding: 4rem 0;
}

.info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 300;
}

.locations-row {
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.locations-row .info-card {
    flex: 0 1 calc(50% - 1rem);
    min-width: 250px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-grid .info-card {
    flex: 1;
    min-width: 250px;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Timeline Visualization */
.timeline-card {
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    z-index: 1;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-time {
    width: 80px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
    padding-right: 1.5rem;
    position: relative;
    z-index: 3;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    position: relative;
    z-index: 3;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 74px;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 4;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.location-name {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.location-address {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 4rem 0;
}

.whatsapp-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.whatsapp-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.whatsapp-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.05);
}

.whatsapp-instructions {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

.whatsapp-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    text-align: center;
}

.whatsapp-instructions ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 2;
}

.whatsapp-instructions li {
    margin-bottom: 0.5rem;
}

.note {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 5px;
    color: var(--text-dark);
    font-style: italic;
    margin-top: 1rem;
}

/* RSVP Section */
.rsvp-section {
    padding: 4rem 0;
}

.rsvp-content {
    max-width: 700px;
    margin: 0 auto;
}

.rsvp-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.rsvp-card h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.rsvp-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.rsvp-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 2rem 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.rsvp-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.rsvp-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* Photos Section */
.photos-section {
    padding: 4rem 0;
}

.photos-disclaimer {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.disclaimer-card {
    background: var(--accent-color);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.disclaimer-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.photos-placeholder {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.placeholder-content {
    background: var(--light-bg);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.placeholder-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-top: 2rem;
    opacity: 0.5;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .lang-toggle {
        border-left: none;
        border-top: 1px solid var(--border-color);
        margin-left: 0;
        padding-left: 0;
        padding-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-date {
        font-size: 1.2rem;
    }

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

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

    .info-section h2,
    .whatsapp-instructions h3 {
        font-size: 2rem;
    }

    .locations-row {
        flex-direction: column;
    }

    .locations-row .info-card {
        min-width: 100%;
    }

    .info-grid .info-card {
        min-width: 100%;
    }

    .timeline::before {
        left: 60px;
        width: 3px;
    }

    .timeline-time {
        width: 60px;
        font-size: 1rem;
        padding-right: 1rem;
    }

    .timeline-item::after {
        left: 54px;
        width: 14px;
        height: 14px;
        border: 3px solid var(--white);
        box-shadow: 0 0 0 3px var(--primary-color);
    }

    .timeline-content {
        padding-left: 1.5rem;
    }

    .whatsapp-groups {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .page-header {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .rsvp-card,
    .whatsapp-card {
        padding: 2rem 1.5rem;
    }

    .rsvp-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

