@font-face {
    font-family: 'MumboSSK';
    src: url('../assets/fonts/MumboSSK-Bold.ttf') format('truetype');
}

:root {
    --nav-bg: rgba(0, 0, 0, 0.9);
    --footer-bg: rgba(0, 0, 0, 0.95);
    --text-color: #ffffff;
    --accent-red: #ff4d4d;
    --accent-green: #00ff88;
    --accent-blue: #4d94ff;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000;
    font-family: 'MumboSSK', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* --- BACKGROUND ANIMATION --- */
.highway-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1a1a1a 0%, #000000 100%);
    perspective: 200px;
    overflow: hidden;
    z-index: 0;
}

.road {
    position: absolute;
    width: 10px;
    height: 200%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 80px,
        white 80px,
        white 120px
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    animation: drive 4s linear infinite;
    z-index: 1;
    isolation: isolate; /* CRITICAL FIX */
}

@keyframes drive {
    from { transform: translate(-50%, -50%) rotateX(75deg) translateY(0); }
    to   { transform: translate(-50%, -50%) rotateX(75deg) translateY(120px); }
}

/* --- DASHBOARD NAVIGATION --- */
.dashboard-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--nav-bg);
    border: 2px solid #333;
    padding: 1rem 2.5rem;
    display: flex;
    gap: 2.5rem;
    z-index: 500;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border-radius: 50px;
}

.dashboard-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'MumboSSK', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.dashboard-nav a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 8px var(--accent-red);
}

/* --- MAIN CONTENT --- */
.content-container {
    position: relative;
    z-index: 10;
    padding-top: 40vh;
    padding-bottom: 140px;
    width: 100%;
}

main {
    padding-top: 0;
}

.billboard {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh; 
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.95);
    padding: 0 20px;
}

.billboard:hover {
    opacity: 1;
    transform: scale(1);
}

.route-sign {
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 2.5rem 3.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.route-sign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-red);
}

.route-sign h1 {
    font-size: 3.5rem;
    margin: 0.5rem 0;
    letter-spacing: 2px;
    font-family: 'MumboSSK', sans-serif;
    line-height: 1.1;
    text-transform: uppercase;
}

.route-sign h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    letter-spacing: 2px;
    font-family: 'MumboSSK', sans-serif;
    text-transform: uppercase;
}

.route-sign p {
    font-size: 1rem;
    font-weight: normal;
    font-family: 'MumboSSK', sans-serif;
    line-height: 1.6;
    color: #333;
}

.drink-logo {
    max-height: 120px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.5s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.billboard:hover .drink-logo {
    filter: grayscale(0%) brightness(1);
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-text {
    text-align: left;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text h3 {
    margin-top: 0;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.ingredients-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-top: 1rem;
    border-left: 4px solid var(--accent-blue);
    text-align: center;
}

/* --- CTA LINKS --- */
.cta-link {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    font-family: 'MumboSSK', sans-serif;
}

.cta-link:hover {
    color: var(--accent-red);
}

/* --- SITE FOOTER --- */
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--footer-bg);
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-family: 'MumboSSK', sans-serif;
    z-index: 400; 
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.footer-contact-link {
    color: #fff;
    text-decoration: underline;
    font-family: 'MumboSSK', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-right: 0.5rem;
}

.footer-contacts a {
    color: #fff;
    text-decoration: underline;
    margin-right: 0.5rem;
}

.footer-copyright { margin: 0; font-size: 0.7rem; color: #777; text-transform: uppercase; letter-spacing: 1px; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .billboard { min-height: 25vh; }
    .route-sign { padding: 1.5rem 1.5rem; max-width: 90%; width: auto; }
    .route-sign h1 { font-size: 2rem; }
    .dashboard-nav { 
        top: 1rem; 
        padding: 0.8rem 1.5rem; 
        gap: 1rem; 
        width: 90%;
    }
    .dashboard-nav a { font-size: 0.9rem; }
}