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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #8B0000;
}

/* Age Verification Banner */
.age-verification-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.age-verification-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.age-verification-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.age-verification-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 80px;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    color: #FFD700;
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #F8F8F8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F8F8F8;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 260vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(139, 0, 0, 0.4));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #F8F8F8;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background: #FFFFFF;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    color: #8B0000;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* Featured Hotels Section */
.featured-hotels {
    padding: 80px 0;
    background: #F8F8F8;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #8B0000;
    margin-bottom: 60px;
}

.hotel-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hotel-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.hotel-card.reverse .hotel-image {
    order: 2;
}

.hotel-card.reverse .hotel-content {
    order: 1;
}

.hotel-image {
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-content {
    padding: 40px;
}

.hotel-content h3 {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 30px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    display: inline-block;
}

.detail-section p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #F8F8F8;
}

.why-choose .section-title {
    color: #FFD700;
    margin-bottom: 40px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-choose-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature p {
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #F8F8F8;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #F8F8F8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 14px;
    color: #AAA;
    line-height: 1.5;
}

.disclaimer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 150px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 150px);
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        margin: 20px 0;
    }

    .age-verification-image {
        max-width: 400px;
    }

    .hero {
        margin-top: 260vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hotel-card {
        grid-template-columns: 1fr;
    }

    .hotel-card.reverse .hotel-image {
        order: 1;
    }

    .hotel-card.reverse .hotel-content {
        order: 2;
    }

    .hotel-content {
        padding: 30px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .age-verification-image {
        max-width: 350px;
    }

    .hero {
        margin-top: 260vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .hotel-content {
        padding: 20px;
    }

    .hotel-content h3 {
        font-size: 20px;
    }

    .detail-section h4 {
        font-size: 16px;
    }

    .feature {
        padding: 20px;
    }

    .feature-icon {
        font-size: 30px;
    }
}

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

.hotel-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

