@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #23967F;
    --secondary-color: #FF6F61;
    --dark-color: #2E3440;
    --light-color: #F9F9F9;
    --accent-color: #6C5CE7;
    --text-color: #333333;
    --light-text: #FAFAFA;
    --card-bg: #F2F2F2;
    --gradient-start: #23967F;
    --gradient-end: #45B69C;
    --success-color: #28A745;
    --warning-color: #FFC107;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif, Inter, system-ui, sans-serif;
}

body {
    font-family: Poppins, sans-serif, Inter, system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-color);
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}
/* Section headers underline animation */
h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: width 0.8s ease;
}
section:hover h2::after {
    width: 100%;
}
p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
}



button:hover::after {
    width: 300px;
    height: 300px;
}

.highlight {
   color: #FACC15;
    font-weight: 600;
    position: relative;
}

/* Highlight text animation */
.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Staggered fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}



.logo span {
    color: var(--accent-color);
}

.contact-btn {
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 1rem;
    background-color: rgb(16, 185, 129);
    border-radius: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 150, 127, 0.4);
}





.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 150, 127, 0.2);
    outline: none;
}

.form-group input:focus + label {
    color: var(--primary-color);
}

/* Input field animation */
.form-group input::placeholder {
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}

/* Success message animation */
#successMessage {
    display: none;
    color: var(--success-color);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    /* opacity: 0; */
    transform: translateY(20px);
}

#successMessage.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeUp 0.5s ease forwards;
}


.footer-actions .register-btn {
    background: transparent;
    color: white;
    border: 1px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
}

.footer-actions .register-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

footer .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

footer .copyright:hover {
    color: white;
}

footer .copyright .highlight {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

footer .copyright:hover .highlight {
    color: var(--light-text);
}
/* Age Verification Popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4444;
    margin-bottom: 1rem;
    background: rgba(255, 68, 68, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.popup h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-buttons button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-btn {
    background: #4CAF50;
    color: white;
    border: none;
}

.yes-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.no-btn {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.no-btn:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .popup {
        padding: 1.5rem;
    }
    
    .popup-buttons button {
        width: 100%;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero-div {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        min-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .countdown-content {
        flex-wrap: wrap;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    section {
        padding: 3rem 0;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .count {
        font-size: 2rem;
    }

    .new-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav, .footer-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .count {
        font-size: 1.5rem;
    }

    .label {
        font-size: 0.7rem;
    }

    .popup {
        padding: 2rem;
    }

    .popup h1 {
        font-size: 3rem;
    }

    .popup-buttons {
        flex-direction: column;
    }
}

form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px !important;
    border: 1px solid #333;
    border-radius: 5px;
    /* background-color: #1a1f2b; */
    color: #000;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

input[type="checkbox"] {
    margin-right: 10px;
    /* margin-top: 5px; */
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    /* margin: 15px 0; */
}

.colored-link {
    color: var(--primary-color)e;
    text-decoration: none;
}

.colored-link:hover {
    text-decoration: underline;
}

/* Button Styles */
/* .submit-btn {
    background-color: var(--primary-color);
    color: rgb(12, 12, 12);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
} */

.submit-btn:hover {
    background-color: var(--primary-color);
}
.signup-form {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* notification */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.contact-content{
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.terms{
    display: flex;
    margin: 10px 0;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 1rem; /* Space between the fields */
}
.contact-form{
    max-width: 650px;
}

/* Responsive Design for Grid Layout */
@media (max-width: 768px) {
    .form-group-grid {
        grid-template-columns: 1fr; /* Stack fields vertically on smaller screens */
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px 15px;
    }


    .description {
        font-size: 14px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}


.forgot-password {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #8a5cf2;
    text-decoration: none;
    margin-bottom: 15px;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}
.signup-link {
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.age-restriction {
    width: 100%;
    height: 100vh;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Content box */
.content {
    max-width: 600px;
    padding: 20px;
}

/* 18+ Icon */
.icon {
    font-size: 50px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    display: inline-block;
    padding: 20px 30px;
    margin-bottom: 20px;
}

/* Message Text */
.message {
    font-size: 22px;
    font-weight: bold;
    color: #F9F9F9;
}

/* Responsive Design */
@media (max-width: 600px) {
    .icon {
        font-size: 40px;
        padding: 15px 25px;
    }
    .message {
        font-size: 18px;
    }
}