@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Oswald:wght@400;600;700&display=swap');

:root {
    /* Custom Theme Colors: Light Theme with Teal & Coral */
    --brand-main: #0D9488; /* Teal */
    --brand-dark: #0F766E;
    --ui-base-light: #F8FAFC; /* Off-white */
    --ui-base-dark: #1E293B; /* Slate */
    --tone-highlight: #F97316; /* Orange/Coral accent */
    --text-primary: #334155;
    --text-muted: #64748B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--brand-main) 0%, var(--ui-base-dark) 100%);
    --gradient-accent: linear-gradient(135deg, #F97316 0%, #EA580C 100%);

    /* Fonts */
    --typography-heading: 'Oswald', sans-serif;
    --typography-body: 'Inter', sans-serif;
}

body {
    font-family: var(--typography-body);
    color: var(--text-primary);
    background-color: var(--ui-base-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--typography-heading);
    color: var(--ui-base-dark);
}

/* Custom Semantic Classes */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-layout-top {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.brand-logomark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--typography-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-main);
    text-decoration: none;
}

.menu-links-group {
    display: flex;
    gap: 2rem;
}

.menu-item-link {
    font-weight: 500;
    color: var(--ui-base-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item-link:hover {
    color: var(--brand-main);
}

.mobile-trigger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ui-base-dark);
}

.action-btn-primary {
    display: inline-block;
    background-color: var(--brand-main);
    color: #ffffff;
    font-family: var(--typography-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
}

.action-btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}

.action-btn-accent {
    display: inline-block;
    background-color: var(--tone-highlight);
    color: #ffffff;
    font-family: var(--typography-heading);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.action-btn-accent:hover {
    opacity: 0.9;
}

.footer-global-zone {
    background-color: var(--ui-base-dark);
    color: #ffffff;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-disclaimer-text {
    font-size: 0.875rem;
    color: #94A3B8;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

/* Specific Section Classes */
.movement-intro-wrap {
    padding: 6rem 0;
    color: #ffffff;
}

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

.info-block-panel {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--brand-main);
}

.numbered-list-circle {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.numbered-list-circle li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.numbered-list-circle li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: -2px;
    background-color: var(--tone-highlight);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}
.numbered-list-circle {
    counter-reset: item;
}

/* Form Styles */
.booking-form-area {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.input-field-standart {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    font-family: var(--typography-body);
}

.input-field-standart:focus {
    outline: none;
    border-color: var(--brand-main);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ui-base-dark);
    color: white;
    z-index: 9999;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.cookie-btn-accept {
    background-color: var(--brand-main);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-links-group {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    
    .menu-links-group.active-nav {
        display: flex;
    }
    
    .mobile-trigger-btn {
        display: block;
    }

    .movement-intro-wrap {
        padding: 4rem 0;
    }

    #cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}