/* layout.css - Shared layout styles */
:root {
    --primary-green: #a2ff00;
    --neon-lime: #c9f615;
    --dark-bg: #050804;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(201, 246, 21, 0.25);
    --clean-white: #FFFFFF;
    --nav-bg: rgba(5, 8, 4, 0.8);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

body {
    background-color: var(--dark-bg);
    background: radial-gradient(circle at center, #111d0a 0%, #050804 100%);
    color: white;
    min-height: 100vh;
    padding-top: 80px; /* Space for fixed nav */
    display: flex;
    flex-direction: column;
}

/* --- NAVIGATION STYLES --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover { 
    color: var(--primary-green); 
}

/* --- MAIN CONTAINER --- */
.profile-container {
    width: 100%;
    max-width: 850px;
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.7);
    margin: 0 auto 50px auto;
}

@media (max-width: 600px) {
    nav { 
        gap: 15px; 
        padding: 15px; 
    }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.wa-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
.wa-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.floating-wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.wa-popup {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--primary-green);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.wa-popup.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.wa-popup-link {
    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.wa-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: white;
}
.wa-desc {
    font-size: 0.75rem;
    color: #ccc;
    font-weight: normal;
}
.wa-popup-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}
.wa-popup-link:hover .wa-title, 
.wa-popup-link:hover .wa-desc {
    color: black;
}
.wa-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(162, 255, 0, 0.4);
    transition: 0.3s;
}
.wa-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 30px rgba(162, 255, 0, 0.6);
}

/* --- GLOBAL FOOTER --- */
.global-footer {
    width: 100%;
    background: #000;
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 850px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section h3 {
    color: var(--primary-green);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-section p, .footer-section a {
    color: #888;
    font-size: 0.8rem;
    text-decoration: none;
    line-height: 1.5;
    transition: 0.2s;
}

.footer-section a:hover {
    color: var(--clean-white);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
.wa-main-btn img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}
