/* Common styles for all pages - Burger 22 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    --primary-orange: #FFA500;
    --warm-yellow: #FFB84D;
    --graphite: #3A3A3A;
    --graphite-light: #5A5A5A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --shadow: rgba(58, 58, 58, 0.1);
    --shadow-hover: rgba(58, 58, 58, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--off-white);
    color: var(--graphite);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100dvh;
    overflow-x: hidden;
}

/* Burger Menu Button */
.burger-menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu-btn:hover {
    transform: scale(1.05);
}

.burger-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--warm-yellow));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: rgba(58, 58, 58, 0.8);
}

.burger-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: rgba(58, 58, 58, 0.8);
}

/* Burger Menu Overlay */
.burger-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--warm-yellow) 100%);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.burger-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
}

.burger-menu-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    transform: translateX(-50px);
    opacity: 0;
}

.burger-menu-overlay.active .burger-menu-item {
    transform: translateX(0);
    opacity: 1;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.burger-menu-overlay.active .burger-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.burger-menu-item:hover {
    transform: translateX(10px);
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.3);
}

.burger-menu-icon {
    font-size: 1.2em;
}

/* Language switcher */
.language-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lang-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.lang-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--graphite) 0%, var(--graphite-light) 100%);
    color: var(--white);
    margin-top: 80px;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95em;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.9em;
    opacity: 0.7;
}

/* Hero section (common for all pages) */
.hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(255, 165, 0, 0.5) 0%,
            rgba(255, 184, 77, 0.5) 100%
        ),
        url('./images/header.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 60px 20px 50px;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.logo-main {
    height: 120px;
    width: auto;
    filter: drop-shadow(3px 5px 12px rgba(0, 0, 0, 0.25));
}

.logo-full-main {
    height: 2.5em;
    width: auto;
    filter: drop-shadow(3px 5px 12px rgba(0, 0, 0, 0.25));
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    color: var(--white);
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 3px 5px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.logo {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(3px 5px 12px rgba(0, 0, 0, 0.25));
}

.logo-full {
    height: 1em;
    width: auto;
    filter: drop-shadow(3px 5px 12px rgba(0, 0, 0, 0.25));
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--warm-yellow) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    margin-top: 12px;
    opacity: 1;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.home-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.home-link:hover h1 {
    transform: scale(1.02);
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
        letter-spacing: 1.5px;
    }

    .logo-full-main {
        height: 2em;
    }

    .hero {
        padding: 40px 20px 40px;
        min-height: 250px;
    }

    .tagline {
        font-size: 1.1em;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }

    .footer {
        margin-top: 60px;
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
        letter-spacing: 1.2px;
    }

    .logo-full-main {
        height: 1.6em;
    }

    .hero {
        padding: 35px 16px 35px;
        min-height: 220px;
    }

    .tagline {
        font-size: 1em;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 15px;
        justify-content: center;
    }

    .lang-btn {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .container {
        padding: 0 16px;
    }

    .burger-menu-btn {
        width: 45px;
        height: 45px;
        top: 15px;
        left: 15px;
    }

    .burger-menu-btn span {
        width: 22px;
        height: 2.5px;
    }

    .burger-menu-item {
        font-size: 2em;
        gap: 15px;
    }

    .burger-menu-nav {
        gap: 25px;
        padding: 30px;
    }

    .footer {
        margin-top: 40px;
        padding: 30px 0 15px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }

    .footer-section p {
        font-size: 0.9em;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
