* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #2C0D09;
    color: #E3C6C6;
}

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

.age-warning-content {
    background-color: #4A1A15;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    max-width: 28rem;
    text-align: center;
}

.age-warning-content h2 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.age-warning-content p {
    color: #F5E0E0;
    margin-bottom: 1.5rem;
}

.age-warning-content button {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.age-warning-content button:hover {
    background-color: #F5E0E0;
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    background-color: #4A1A15;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /*position: */
    width: 100%;
    z-index: 10;
}

.navbar-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-links a {
    color: #F5E0E0;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #E3C6C6;
}

.navbar-links a.get-started {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.5rem 1rem;
}

.navbar-links a.get-started:hover {
    background-color: #F5E0E0;
    color: #2C0D09;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #E3C6C6;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background-color: #4A1A15;
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 9;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #F5E0E0;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    text-align: center;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #E3C6C6;
}

.mobile-menu a.get-started {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin: 0 auto;
}

.mobile-menu a.get-started:hover {
    background-color: #F5E0E0;
}

/* Hero Section with Carousel */
.hero {
    /*padding-top: 6rem;*/
    position: relative;
}

.carousel {
    height: 768px;
    overflow: hidden;
    position: relative;
}

.carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(44, 13, 9, 0.2), rgba(74, 26, 21, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    padding: 1.5rem;
    max-width: 48rem;
    opacity: 1;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
    color: white
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
    color: white;
}

.hero-content a {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.75rem 2rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.hero-content a:hover {
    background-color: #F5E0E0;
    transform: scale(1.05);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(74, 26, 21, 0.5);
    color: #E3C6C6;
    padding: 0.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.2s;
}

.carousel-btn:hover {
    background-color: rgba(74, 26, 21, 0.75);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #4A1A15;
}

.features-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background-color: #2C0D09;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #F5E0E0;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #2C0D09;
}

.pricing-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
    background-color: #4A1A15;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    color: #F5E0E0;
    margin-bottom: 1rem;
}

.pricing-card a {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pricing-card a:hover {
    background-color: #F5E0E0;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #4A1A15, #2C0D09);
    text-align: center;
}

.cta-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.cta-content p {
    font-size: 1.25rem;
    color: #F5E0E0;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-content a {
    background-color: #E3C6C6;
    color: #2C0D09;
    padding: 0.75rem 2rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.cta-content a:hover {
    background-color: #F5E0E0;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(to top, #2C0D09, #4A1A15);
    color: #F5E0E0;
    padding: 4rem 0;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #E3C6C6;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #F5E0E0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #E3C6C6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .navbar-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
    .carousel img {
        object-fit: contain;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
   .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .carousel  {
        height:auto;
        aspect-ratio: 4/3;
    }
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}