/* =================================== */
/* 1. GLOBAL STYLES (For all pages) */
/* =================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');
:root {
    --main-color: #E8AC20;
    --bg-light: #fff7e6;
    --text-dark: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
span {
    font-weight: 600;
    letter-spacing: 0.5px;
}
.brand h2 {
    font-family: 'Arial Rounded MT Bold', 'Helvetica Rounded', Arial, sans-serif;    font-weight: 900;
    font-size: 2.5rem;
    color: var(--main-color);
    letter-spacing: -5px;
    margin: 0 0 0 8px;
    line-height: 1;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

/* 3. THE ZIGZAG UNDERLINE (Custom SVG) */
.brand h2::after {
    content: '';
    position:absolute;               
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 8px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 25' fill='none'><path d='M5 15 L145 5 L140 19 350 2' stroke='%23E8AC20' stroke-width='4' stroke-linecap='round' vector-effect='non-scaling-stroke'/></svg>");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
/* General container for layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* 1. INTRO ANIMATION */
#intro {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: hideIntro 1s ease 1s forwards;
    pointer-events: none;
}

#introContent {
    display: flex;
    align-items: center;
    gap: 20px;
}

#introLogo {
    width: 0;
    opacity: 0;
    animation: logoGrow 0.5s ease forwards;
}

#introText {
    font-size: 2rem;
    color: var(--main-color);
    opacity: 0;
    transform: translateX(-50px);
    animation: textSlide 0.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes logoGrow {
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes textSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hideIntro {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* 2. NAVBAR (Modern Glass Style) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;

    /* === GLASSMORPHISM EFFECT === */
    background: rgba(255, 255, 255, 0.85);
    /* See-through white */
    backdrop-filter: blur(12px);
    /* Blurs the content behind it */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 172, 32, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(232, 172, 32, 0.2);
}

.brand h2 {
    margin: 0;
    color: var(--main-color);
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 2rem;
    /* Adds a tiny shadow to text to make it pop */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

/* === LINKS STYLING === */
nav .links {
    display: flex;
    gap: 10px;
    /* Reduced gap because links now have padding */
}

nav .links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;

    /* This creates the button shape */
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER EFFECT: Turns link into a Gold Pill */
nav .links a:hover {
    color: white;
    background: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 172, 32, 0.4);
}

nav .links a.active {
    background: var(--main-color);
    /* Solid Gold Background */
    color: white;
    /* White text */
    box-shadow: 0 4px 15px rgba(232, 172, 32, 0.3);
    /* Soft Glow */
    font-weight: 700;
    pointer-events: none;
    /* Disables clicking the page you are already on */
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: var(--main-color);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(232, 172, 32, 0.4);
}

/* Footer Style */
.site-footer {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 40px;
    color: #777;
    animation: fadeIn 1s ease;
}

/* 7. SHARED ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(.97);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 10. GLOBAL RESPONSIVE */
@media(max-width: 600px) {

    /* Stack the logo and menu vertically */
    nav {
        flex-direction: column;
        gap: 15px;
    }

    /* FORCE the links to appear */
    nav .links {
        display: flex;
        gap: 15px;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Hide the mobile button since you aren't using it yet */
    .menu-toggle {
        display: none;
    }
}
#introText {
    font-weight: 900 !important;
    text-transform: uppercase;
}

@media(max-width: 600px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    .brand {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .search-box {
        width: 100% !important;
        gap: 5px !important;
        padding: 8px !important;
    }

    .search-box input {
        width: 100%;
    }

    .search-box button {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        white-space: nowrap;
    }

    #introContent {
        flex-direction: column;
        text-align: center;
    }

    #introText {
        margin-top: 15px;
        font-size: 1.5rem !important;
    }
}