/* ==========================================================================
   Salsa Zeewolde - Light Theme
   Primary: #c0392b (warm red), Accent: #e74c3c, Dark: #2c1810
   Background: #faf7f2 (warm cream), Cards: #fff
   Fonts: Playfair Display (headings), Source Sans 3 (body)
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    color: #3d2c22;
    background-color: #faf7f2;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #2c1810;
    line-height: 1.2;
}

a {
    color: #c0392b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e74c3c;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Navigation - Light warm navbar
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c1810;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.nav-brand a:hover {
    color: #c0392b;
}

.brand-name {
    white-space: nowrap;
}

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

.nav-link {
    display: block;
    padding: 8px 16px;
    color: #4a3728;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: color 0.3s, background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.06);
}

.nav-social {
    display: flex;
    align-items: center;
    color: #4a3728;
    padding: 8px;
    border-radius: 50%;
    transition: color 0.3s, background-color 0.3s;
}

.nav-social:hover {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.08);
}

.nav-lang {
    margin-left: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #c0392b;
    color: #c0392b;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Source Sans 3', sans-serif;
}

.lang-btn:hover {
    background: #c0392b;
    color: #fff;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2c1810;
    transition: transform 0.3s, opacity 0.3s;
}

/* ==========================================================================
   Hero Section - warm overlay on background image
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1504609813442-a8924e83f76e?w=1920&q=80') center center / cover no-repeat;
    padding: 120px 20px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.55) 0%,
        rgba(44, 24, 16, 0.35) 50%,
        rgba(44, 24, 16, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 14px 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

.btn-primary:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #c0392b;
    border-color: #c0392b;
}

.btn-outline:hover {
    background-color: #c0392b;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #faf7f2;
}

.section-accent {
    background-color: #fff;
}

.section-highlight {
    background: linear-gradient(135deg, #fdf0e0 0%, #faf7f2 100%);
    border-top: 1px solid rgba(192, 57, 43, 0.12);
    border-bottom: 1px solid rgba(192, 57, 43, 0.12);
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 25px;
    color: #2c1810;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c0392b;
}

.section p {
    font-size: 1.05rem;
    color: #5a4234;
    margin-bottom: 15px;
    max-width: 720px;
}

.center-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-text p {
    max-width: 650px;
}

/* ==========================================================================
   Schedule
   ========================================================================== */

.schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.schedule-block {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.schedule-block h4 {
    font-size: 1.3rem;
    color: #c0392b;
    margin-bottom: 5px;
}

.schedule-note {
    font-size: 0.85rem !important;
    color: #9b8578 !important;
    font-style: italic;
    margin-bottom: 12px !important;
}

.schedule-block ul {
    list-style: none;
    padding: 0;
}

.schedule-block li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    color: #4a3728;
}

.schedule-block li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Cards - Info Section
   ========================================================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.95rem;
    max-width: none;
}

/* ==========================================================================
   CTA Group
   ========================================================================== */

.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   Motto
   ========================================================================== */

.motto {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem !important;
    color: #c0392b !important;
    margin-top: 25px !important;
}

/* ==========================================================================
   Footer - warm light footer
   ========================================================================== */

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-main {
    background-color: #f0ebe4;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-social h4,
.footer-contact h4,
.footer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #2c1810;
}

.footer-social p,
.footer-contact p,
.footer-info p {
    font-size: 0.95rem;
    color: #6b5648;
}

.footer-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 5px;
    color: #c0392b;
    transition: all 0.3s;
}

.footer-fb-link:hover {
    background: rgba(192, 57, 43, 0.08);
    color: #e74c3c;
}

.footer-info ul {
    list-style: none;
}

.footer-info li {
    margin-bottom: 8px;
}

.footer-info a {
    color: #6b5648;
    font-size: 0.95rem;
}

.footer-info a:hover {
    color: #c0392b;
}

.footer-bottom {
    background-color: #e8e1d8;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8a7568;
}

/* ==========================================================================
   Contact Page - Form
   ========================================================================== */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #2c1810;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    color: #3d2c22;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ==========================================================================
   Subpages - content sections
   ========================================================================== */

.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #f0ebe4, #faf7f2);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2c1810;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    margin-bottom: 10px;
}

.content-block p {
    margin-bottom: 10px;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.content-block li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #5a4234;
}

.content-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #c0392b;
    border-radius: 50%;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        gap: 0;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-lang {
        margin-left: 0;
        margin-top: 10px;
        padding: 5px 16px;
    }

    .nav-social {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .section {
        padding: 50px 0;
    }

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