/* ======================== */
/* General Styles */
/* ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --secondary-color: #2e5c8a;
    --accent-color: #e3f2fd;
    --dark-text: #333333;
    --light-bg: #fafafa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ======================== */
/* Navigation Bar */
/* ======================== */
.navbar {
    background: linear-gradient(135deg, #2e5c8a 0%, #1e3a5f 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

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

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-menu a {
    color: #ffffff;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.cta-btn {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--secondary-color) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* ======================== */
/* Hero Section */
/* ======================== */
.hero {
    background: linear-gradient(135deg, #2e5c8a 0%, #1e3a5f 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e3f2fd" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: 300;
}

.hero-content .date {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--secondary-color);
}

/* ======================== */
/* Countdown Section */
/* ======================== */
.countdown-section {
    background-color: var(--accent-color);
    padding: 4rem 0;
    text-align: center;
}

.countdown-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

/* ======================== */
/* Quick Links Section */
/* ======================== */
.quick-links {
    padding: 4rem 0;
    background-color: #fafafa;
}

.quick-links h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.link-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-align: center;
    color: var(--dark-text);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.link-card p {
    color: #666666;
}

/* ======================== */
/* Highlights Section */
/* ======================== */
.highlights {
    background: linear-gradient(135deg, #2e5c8a 0%, #1e3a5f 100%);
    padding: 4rem 0;
    color: #ffffff;
}

.highlights .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.highlight-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* ======================== */
/* Page Hero */
/* ======================== */
.page-hero {
    background: linear-gradient(135deg, #2e5c8a 0%, #1e3a5f 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 2px;
}

/* ======================== */
/* Content Section */
/* ======================== */
.content-section {
    padding: 4rem 0;
    min-height: 400px;
}

.content-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.about-content {
    margin-bottom: 3rem;
}

.about-section {
    background-color: var(--accent-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.about-section h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.about-gallery {
    margin-top: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-placeholder {
    background-color: var(--accent-color);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
}

/* ======================== */
/* Details Cards */
/* ======================== */
.details-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.details-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-card h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.details-card p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* ======================== */
/* Timeline */
/* ======================== */
.schedule-section {
    margin: 3rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 2rem;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 60%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 60%;
}

.timeline-time {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.timeline-content {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ======================== */
/* Form Styles */
/* ======================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

.submit-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* ======================== */
/* Contact Info */
/* ======================== */
.contact-info-section {
    display: flex;
    flex-direction: column;
}

.info-card {
    background-color: var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-box {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-section {
    text-align: center;
}

.thank-you-section h3 {
    color: var(--primary-color);
}

/* ======================== */
/* Gallery */
/* ======================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    background-color: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0d0c0;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
    padding: 1rem;
}

.gallery-item p {
    padding: 1rem;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ======================== */
/* Hotel Cards */
/* ======================== */
.hotel-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.hotel-card {
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.hotel-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hotel-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hotel-card p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.hotel-card a {
    color: var(--primary-color);
    font-weight: bold;
}

/* ======================== */
/* Directions & Attractions */
/* ======================== */
.directions-card {
    background-color: var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.directions-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.attraction-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.attraction-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ======================== */
/* Registry */
/* ======================== */
.registry-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.store-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.store-card {
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.store-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.store-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.gift-categories {
    margin: 3rem 0;
}

.category-section {
    background-color: var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.category-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-section ul {
    padding-left: 20px;
}

.category-section li {
    margin-bottom: 0.5rem;
}

/* ======================== */
/* FAQ */
/* ======================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.8;
    color: #666666;
}

/* ======================== */
/* Footer */
/* ======================== */
.footer {
    background: linear-gradient(135deg, #2e5c8a 0%, #1e3a5f 100%);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--accent-color);
}

/* ======================== */
/* Responsive Design */
/* ======================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .language-selector {
        order: 2;
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.5rem;
    }

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

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        padding: 0 !important;
        text-align: left !important;
        padding-left: 50px !important;
    }

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

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

    .quick-links h2 {
        font-size: 1.8rem;
    }

    .countdown-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .contact-form {
        font-size: 0.95rem;
    }
}
