/* General Body Styling */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background: linear-gradient(to bottom, #000428, #000428);
    overflow-x: hidden;
}

/* Header Styling */
header {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #E94560, #1A1A2E) 1;
    padding: 20px 0;
    position: relative;
    z-index: 9999;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Container */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

/* Logo Styling */
header .logo {
    display: flex;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}

header .logo img {
    width: auto;
    max-width: 100%;
    height: auto;
}

/* Navigation Styling */
header nav {
    display: flex;
    padding-top: 10px;
    justify-content: center;
    flex-grow: 1;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

header nav ul li {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

header nav ul li a:hover {
    color: #E94560;
}

header nav ul li a.active {
    color: #E94560;
    font-weight: bold;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    /* Menu toggle button for mobile */
    .menu-toggle {
        display: inline-block;
        cursor: pointer;
        padding: 10px;
        color: #ffffff;
        border-radius: 5px;
        font-size: 28px;
        transition: transform 0.3s, background-color 0.3s;
    }

    .menu-toggle:hover {
        transform: scale(1.1);
    }

    /* Navigation menu */
    header nav ul {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 70%; 
        max-width: 300px; 
        height: 100vh; 
        background: #000; 
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        z-index: 9999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        transition: left 0.5s ease; 
        overflow-x: hidden; 
    }

    /* Active menu (visible) */
    header nav ul.active {
        left: 0; 
    }

    /* Navigation items */
    header nav ul li {
        width: 100%; 
        padding: 10px 0; 
        display: flex; 
        align-items: center; 
        border-bottom: 1px solid #333; 
    }

    /* Navigation links */
    header nav ul li a {
        color: #ffffff;
        font-size: 20px; 
        text-align: left;
        text-decoration: none;
        width: 100%; 
        padding-left: 10px; 
        transition: color 0.3s ease; 
    }

    /* Hover effect for links */
    header nav ul li a:hover {
        color: #f90; 
    }
}

/* Call-to-Action Button */
.cta-button {
    background-color: #E94560;
    color: #FFFFFF;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
    display: inline-block;
    margin-left: 0px;
    flex-shrink: 0;
}

.cta-button:hover {
    background-color: #1A1A2E;
}

/* Cookie Popup Styling */
#cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    font-family: Arial, sans-serif;
    max-width: 300px;
    animation: fadeIn 0.5s ease-in-out;
    text-align: center; 
}

#cookie-popup p {
    margin: 0 0 10px 0;
    font-size: 14px;
}

#cookie-popup a {
    color: #E94560;
    text-decoration: underline;
}

#cookie-popup button {
    background: #E94560;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px; 
    display: inline-block; 
    text-align: center; 
}

#cookie-popup button:hover {
    background: #1A1A2E;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}