/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #350053;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --background-color: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --h1-color: #ffca38;
}

html {
    font-size: 18px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--black);
    margin: 0;
}

/* Header and Navigation */
header {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: var(--h1-color);
    margin-bottom: 1rem;
    font-size: 2.3em;
    line-height: 1;
    font-weight: 400;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Main Content - Hero Section */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)), url('../images/home-background.jpg') no-repeat center center;
    background-size: cover;
}

/* Content Row - Logo + Cards */
.content-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
}

/* Logo Container */
.logo-container {
    flex-shrink: 0;
    min-width: 400px;
}

.hero-logo {
    max-width: 75vw;
    height: auto;
    animation: logoGrow 1.5s ease-out forwards;
}

@keyframes logoGrow {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .hero-logo {
        max-width: 50vw;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 75vw;
    }
}

/* Info Box */
.info-box {
   /* background-color: rgba(0, 0, 0, 0.1); */
    border-radius: 10px;
    max-width: 700px;
    text-align: left;

}

.info-box p {
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.4;
}

.btn-explore {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-explore:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Cards Layout */
.cards-container {
    display: flex;
    gap: 2rem;
}

.card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    flex: 1;
    max-width: 400px;
    color: var(--white);
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Features List */
.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features-list li:last-child {
    border-bottom: none;
}

/* Registration Form */
.registration-form .form-group {
    margin-bottom: 1rem;
}

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.registration-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.registration-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--h1-color);
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Age Verification Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: #000000;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}   

.modal h2 {
    color: var(--h1-color);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.modal p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.modal-btn {
    display: block;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-btn-confirm {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.modal-btn-confirm:hover {
    background-color: var(--h1-color);
    transform: translateY(-2px);
}

.modal-btn-leave {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-leave:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

/* Full-Screen Sections */
.hidden {
    display: none !important;
}

.section {
    min-height: 100vh;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.section-inner {
    max-width: 900px;
    width: 100%;
    animation: sectionFadeIn 0.5s ease-out;
}



.section-inner p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-inner p:last-child {
    margin-bottom: 0;
}

.section-header {

    padding-bottom: 0.5rem;
    font-weight: 200 !important;
    font-size: 4em;
    line-height: 1;
}

.section-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

/* Numbered List */
.numbered-list {
    margin-top: 2rem;
}

.numbered-item {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.numbered-item:last-child {
    border-bottom: none;
}

.item-number {
    color: var(--h1-color);
    font-size: 3rem;
    font-weight: 200;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem;
    text-align: right;
}

.numbered-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;

}

.btn-section-next {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.85rem 2rem;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-section-next:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

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

/* Contact / WhatsApp Section */
.contact-whatsapp {
    margin: 2.5rem 0;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-link:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.whatsapp-number {
    font-weight: 600;
}

.contact-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 1rem 2rem;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .logo-container {
        min-width: unset;
        text-align: center;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .section-inner {
        text-align: center;
    }

    .section-header {
        padding-bottom: 0.5rem;
        font-weight: 200 !important;
        font-size: 1.75em;
        line-height: 1.2;
    }

    .section-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .numbered-list {
        text-align: left;
    }

    .numbered-item {
        gap: 1rem;
    }

    .item-number {
        font-size: 1.75rem;
        min-width: 1.5rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .btn-section-next {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    /* Modal mobile fixes */
    .modal-overlay {
        align-items: flex-start;
        padding: 1rem;
        overflow-y: auto;
    }

    .modal {
        padding: 1.5rem;
        margin: auto;
        max-height: none;
    }

    .modal h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .modal p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .modal-buttons {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .modal-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}
