/* Navbar Styles */
.top-navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.construction-warning {
    background: rgba(255, 193, 7, 0.9); /* Warning Yellow/Orange */
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px 20px;
    text-align: center;
    color: #333;
    font-family: "Caveat Brush", cursive;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Logo */
.nav-brand {
    font-family: "Fjalla One", sans-serif;
    font-size: 24px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: #e5e5e5;
}

/* Links (Center) */
.nav-links {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link-item {
    font-family: "Caveat Brush", cursive;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link-item:hover {
    color: white;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7D3131;
    transition: width 0.3s ease;
}

.nav-link-item:hover::after {
    width: 100%;
}

/* Register Button (Right) */
.nav-btn {
    font-family: "Fjalla One", sans-serif;
    background: linear-gradient(135deg, #7D3131, #a04141);
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 49, 49, 0.4);
    color: white;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        margin-top: 15px;
        padding: 30px;
        border-radius: 20px;
        text-align: center;
        gap: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }

    .nav-toggle {
        display: block;
    }

    .nav-container {
        padding: 15px 20px;
    }
    
    /* Hide desktop register button on mobile if needed, or put it in menu */
    /* For this design, let's keep register button visible and move links to hamburger */
    
    .nav-center {
        flex: 1; 
        display: flex; 
        justify-content: flex-end; /* Push toggle to right on mobile? No, layout is [Brand] [Links] [Btn] */
    }
    
    /* Adjusting grid for mobile */
    .nav-brand {
        font-size: 20px;
    }
    
    .nav-btn {
        display: none; /* Move to inside menu for mobile */
    }
    
    .mobile-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Buttons in Info Widget */
.widget-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid black;
}

.widget-social-btn:hover {
    background: #7D3131;
    transform: translateY(-3px);
    color: white;
    border-color: #7D3131;
}