/* Custom CSS variables for color scheme */
:root {
    --primary: #ea5b0c; /* Bold red for strength */
    --secondary: #2b2d42; /* Dark slate for depth */
    --accent: #f1faee; /* Off-white for contrast */
    --gray-100: #f5f5f5; /* Light gray background */
    --gray-200: #e5e5e5; /* Slightly darker gray */
    --gray-900: #1f2937; /* Dark gray for text */
    --nav-bg: #3c3c3c;
}


html, body {
    scroll-behavior: smooth;
    background-color: var(--gray-100);
    color: var(--gray-900);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    --sb-track-color: #232E33;
    --sb-thumb-color: #ea5b0c;
    --sb-size: 2px;
}


body::-webkit-scrollbar {
    width: var(--sb-size);
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color)
        var(--sb-track-color);
    }
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Sections */
section {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .header {
        height: 50vh;
        background-position: center;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .header-text p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: flex !important;
    }
}
