/* Navigation and Popup Styles - Clean Version */

:root {
    --secondary: #ff3b6f;
    --light-text: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    padding-top: 85px;
    overflow-x: hidden;
    color: var(--light-text);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: transform 0.25s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.02);
}

/* Navigation Menu */
nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease;
    position: relative;
    padding: 6px 0;
}

nav a:hover {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.28s ease-out;
}

nav a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #ff3b6f;
    color: white;
    padding: 0.7rem 1.8rem;
    margin-top: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 59, 111, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.7rem;
    z-index: 1002;
}

.menu-toggle:hover {
    color: var(--secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 75px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        transition: right 0.35s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
        border-left: 1px solid rgba(255, 59, 111, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.8rem;
        padding: 2rem 1.5rem;
        width: 100%;
    }

    nav a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .logo-img {
        height: 42px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 38px;
    }
    .nav-content {
        padding: 0.7rem 5%;
    }
    nav ul {
        gap: 1.4rem;
    }
}

/* Popup Styles */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #111111;
    padding: 2rem;
    border-radius: 28px;
    max-width: 700px;
    width: 90%;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 59, 111, 0.5);
    animation: fadeSlideUp 0.25s ease;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.3rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: var(--secondary);
    background: rgba(255, 59, 111, 0.2);
    transform: rotate(90deg);
}

.popup-content h2 {
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.popup-content p {
    color: #dddddd;
    margin-bottom: 1.6rem;
    font-size: 1rem;
}

/* Social Links - Column Layout */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-box-fb,
.social-box-ig,
.social-box-wsa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    width: 100%;
}

.social-box-fb {
    background: #1877f2;
}

.social-box-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-box-wsa {
    background: #25D366;
}

/* White Hover Effect - Turns buttons white */
.social-box-fb:hover,
.social-box-ig:hover,
.social-box-wsa:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-box-fb:hover i,
.social-box-ig:hover i,
.social-box-wsa:hover i {
    color: #000000;
}