@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --pri: #D42E12;
    --acc: #FFA502;
    --sec: #2F3542;
    --bg: #F1F2F6;
    --text: #1B1B15;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Navbar Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

#nav-logo-img {
    height: 50px;
    width: auto;
}

#nav-logo-text {
    font-family: "Raleway";
    font-weight: 700;
    font-size: 3vh;
    letter-spacing: -1px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%; 
    z-index: 1000;
    transition: background 0.4s ease;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 7vh;
}

.nav-scrolled {
    background-color: var(--pri) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-options {
    display: flex;
    flex-direction: row;
    align-items: center; 
}

.nav-item {
    display: flex; 
    align-items: center;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    gap: 6vw;
}

.nav-item span {
    font-size: 10px;
    font-weight: bold; 
}

.nav-item:hover {
    background-color: var(--pri);
}

.nav-item:active {
    background-color: var(--pri);
}

.nav-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    color: white;
}

.nav-content span {
    font-size: 11px;
    font-weight: bold;
    margin-top: 2px;
}

.nav-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
    filter: brightness(0) invert(1);
}

/* Language Menu Dropdown */
.lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: var(--sec);
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    overflow: hidden;
    visibility: hidden; opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.lang-menu.show-lang {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lang-menu a:hover {
    background-color: var(--pri); }

/* Dropdown Menu & Cascade */
.menu-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: var(--sec);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    pointer-events: none;
}

.menu-open .menu-overlay {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-list {
    list-style: none;
    padding: 20px 8%;
}

.menu-item {
    padding: 20px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0; 
    transform: translateY(20px);
}

.menu-item a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem; }

/* Cascade Opening */
.menu-open .menu-item { opacity: 1; transform: translateY(0); }
.menu-open .menu-item:nth-child(1) { transition-delay: 0.1s; }
.menu-open .menu-item:nth-child(2) { transition-delay: 0.15s; }
.menu-open .menu-item:nth-child(3) { transition-delay: 0.2s; }
.menu-open .menu-item:nth-child(4) { transition-delay: 0.25s; }

/* Cascade Closing */
#navbar:not(.menu-open) .menu-overlay { transition-delay: 0s; }
#navbar:not(.menu-open) .menu-item:nth-child(1) { transition-delay: 0.3s; }
#navbar:not(.menu-open) .menu-item:nth-child(2) { transition-delay: 0.2s; }
#navbar:not(.menu-open) .menu-item:nth-child(3) { transition-delay: 0.1s; }
#navbar:not(.menu-open) .menu-item:nth-child(4) { transition-delay: 0.05s; }

/* Nested Menu */
.nested-header { 
    display: flex; 
    justify-content: space-between; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

.nested-list { 
    display: none; 
    list-style: none; 
    padding: 15px 0 0 20px; 
}

.nested-list a { 
    font-size: 1.1rem; 
    color: var(--acc); 
    text-decoration: none;
}

/* Hero & Cards */
.hero-banner {
    height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    color: white;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                var(--banner-url) center/cover no-repeat;
}

.hero-content h1 {
    font-family: "Raleway";
    font-weight: 700;
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin: 10px 10px 10px 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

.hero-content p {
    font-family: "Roboto";
    font-weight: 300;
    font-size: clamp(0.5rem, 2vw, 1.5rem);
    margin: 10px 10px 10px 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }

.quick-options {
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap;
    gap: 30px; 
    padding: 0 5% 50px 5%; 
    margin-top: -60px;
}

.card {
    background: white;
    border-radius: 15px; 
    text-decoration: none;
    flex: 1;
    min-width: 10vw; 
    max-width: 20vw;
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease; 
    border: 3px solid transparent;
}

.card:hover { 
    transform: translateY(-12px); 
    border-color: var(--acc); 
}

.card img { 
    width: 100%; 
    height: 75%; 
    object-fit: cover; 
}

.card-text { 
    padding: 1vw; 
    text-align: center; 
    font-weight: bold; 
    font-size: 1.2rem; 
    color: var(--sec); 
}
