/* General Body Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Warning Bar Styling */
.warning-bar {
    background-color: #000; /* Black */
    color: #facc15; /* Yellow */
    font-weight: 600;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.875rem; /* text-sm */
}

/* Header Styling */
.header {
    color: #e0e0e0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-image: url(index/Header.jpg);
    background-size: cover;
    background-position: center;
    min-height: 200px;
    position: relative;
    z-index: 1; /* Keep header content above its overlay */
}

/* Header Overlay for Readability */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: -1;
}

/* Navigation Link Styling */
.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 2; /* Ensure nav links are above header overlay */
}
.nav-link:hover {
    background-color: rgba(51, 51, 51, 0.7);
}

/* Styling for the active navigation link */
.active-nav-link {
    background-color: #facc15;
    color: #1a1a1a;
    font-weight: 700;
}
.active-nav-link:hover {
    background-color: #eab308;
}

/* Primary Button Styling */
.btn-primary {
    background-color: #facc15;
    color: #1a1a1a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #eab308;
    transform: translateY(-2px);
}

/* FAQ Specific Styling */
.faq-question {
    font-weight: 600;
    color: #facc15;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.faq-answer {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Footer Styling */
.footer {
    color: #e0e0e0;
    padding: 2rem; /* Default padding for larger screens */
    text-align: center;
    background-image: url(index/Header.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

/* Footer Overlay for Readability */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity as needed for readability */
    z-index: -1; /* Place overlay behind content */
}

/* Logo Placeholder Styling */
.logo-placeholder {
    padding: 0;
    font-weight: normal;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: auto;
    max-width: 200px;
    border-radius: 0.375rem;
    position: relative;
    /* Removed z-index: 2 from here as it caused issues in footer overlap */
}

.logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    display: block; /* Remove extra space below image */
}

/* Age Gate Overlay Styling */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.age-gate-content {
    background-color: #333; /* Dark gray for content box */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    color: #e0e0e0;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.age-gate-content h2 {
    font-size: 1.75rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.age-gate-button {
    background-color: #facc15; /* Yellow */
    color: #1a1a1a;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.age-gate-button:hover {
    background-color: #eab308;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem 0.5rem;
        min-height: 150px; /* Smaller height for mobile */
    }
    
    .header-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .logo-placeholder { /* This applies to header logo too on mobile */
        margin-bottom: 1rem;
        flex-shrink: 0;
    }
    
    .footer {
        padding: 1rem;
        padding-bottom: 0.5rem; 
    }

    .footer .flex-col.md\:flex-row { 
        flex-direction: column; 
        align-items: center; 
        width: 100%; 
    }

    .footer .logo-placeholder {
        margin-bottom: 2rem; 
        max-width: 120px; 
        height: 120px; 
        overflow: hidden; 
    }

    .footer .logo-placeholder a {
        display: block; 
        width: 100%;
        height: 100%;
    }

    .footer .flex.space-x-6 { /* Social media icons container */
        margin-top: 2.5rem; 
        margin-bottom: 2rem;
        justify-content: center;
        width: 100%; 
        padding: 0 0.5rem; 
        gap: 1.5rem; 
    }

    .footer .flex.space-x-6 a { 
        min-width: 44px; 
        min-height: 44px; 
        display: flex; 
        align-items: center;
        justify-content: center;
        padding: 0.25rem;
    }

    /* Adjust SVG size if needed to fit new min-width/height */
    .footer .flex.space-x-6 a svg {
        width: 40px;
        height: 40px; 
    }


    .footer .text-sm { 
        margin-top: 1rem; 
        text-align: center; 
    }

    .footer .text-sm p,
    .footer .text-sm a {
        padding: 0 0.5rem; 
    }

    .footer p.mt-8 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
}