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

body {
      font-family: "Alan Sans", sans-serif;

    background: #f0f4f8;
    min-height: 100vh;
    color: #1a2332;
}

/* Hide site header by default */
.site-header {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.site-title a {
    color: #2563eb;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Default casino background image - can be overridden */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9)),
                      url('data:image/svg+xml;utf8,<svg width="1920" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="casino" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><rect width="80" height="80" fill="%230f172a"/><circle cx="40" cy="40" r="2" fill="%232563eb" opacity="0.4"/><circle cx="20" cy="20" r="1.5" fill="%233b82f6" opacity="0.3"/><circle cx="60" cy="60" r="1.5" fill="%236366f1" opacity="0.2"/></pattern></defs><rect width="1920" height="400" fill="url(%23casino)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero with gradient background (default) */
.hero-gradient {
    background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.95) 0%,
                    rgba(248, 248, 248, 0.98) 50%,
                    rgba(255, 250, 245, 0.95) 100%);
}

/* Hero with image background */
.hero-image {
    position: relative;
}

.hero-image .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Hero with video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 40px 20px;
}
.hero-content {
    padding: 2rem 3rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(236, 254, 255, 0.92) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.4);
}
.page-title {
    font-size: 56px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(15, 23, 42, 0.2);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #334155;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(240, 249, 255, 0.5);
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #f0f4f8;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* Hotel Cards */
.hotel-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.07) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 49, 20, 0.1), transparent);
    transition: left 0.6s ease;
}

.hotel-card:hover::before {
    left: 100%;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgb(120 49 20 / 30%), 0 10px 20px rgba(255, 255, 255, 0.3);
    border-color: rgb(120 49 20 / 50%);
    background: linear-gradient(135deg, rgba(120, 49, 20, 0.05) 0%, rgba(0, 0, 0, 0.08) 100%);
}

/* Remove alternating layout since we're using vertical cards now */

/* Hotel Image */
.hotel-image {
    width: 100%;
    height: 250px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: none;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Hotel Content */
.hotel-content {
    padding: 25px;
}

.hotel-name {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(240, 249, 255, 0.4);
}

.hotel-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-rating {
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.hotel-description {
    font-size: 16px;
    line-height: 1.8;
    color: #1a2332;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, rgb(37 99 235 / 15%) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid rgb(37 99 235 / 25%);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgb(120 49 20 / 30%);
    transform: translateY(-2px);
}

.book-now-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #f0f9ff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgb(37 99 235 / 35%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #783114 0%, #4f1f19 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgb(120 49 20 / 60%);
}

/* No Hotels Message */
.no-hotels-message {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.07) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.no-hotels-message p {
    font-size: 18px;
    color: #6b5c47;
    margin-bottom: 15px;
}

.no-hotels-message p:last-child {
    color: #783114;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(120, 49, 20, 0.2);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #783114, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.disclaimer {
    font-size: 14px;
    color: #6b5c47;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 30px;
}

.disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    color: #1d170f;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 18+ Badge */
.age-restriction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    font-size: 36px;
    font-weight: 900;
    color: #f0f9ff;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.6),
                inset 0 2px 4px rgba(240, 249, 255, 0.4);
    margin: 30px auto;
    position: relative;
    animation: pulse 2s infinite;
    border: 2px solid rgba(240, 249, 255, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 40px rgba(120, 49, 20, 0.6),
                    inset 0 2px 4px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(120, 49, 20, 1),
                    inset 0 2px 4px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 40px rgba(120, 49, 20, 0.6),
                    inset 0 2px 4px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
}

.copyright {
    font-size: 13px;
    color: #9b8b74;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

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

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

    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hotel-content {
        padding: 20px;
    }

    .hotel-name {
        font-size: 26px;
    }

    .hotel-description {
        font-size: 15px;
    }
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .site-header {
    top: 32px;
}

body.admin-bar .hero-section {
    margin-top: 0;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}