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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-beige);
    background: var(--primary-black);
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables - Retro Glamour Palette */
:root {
    --primary-black: #1C1C1C;
    --secondary-dark: #2F4F2F;
    --accent-gold: #D4AF37;
    --button-burgundy: #8B0000;
    --text-beige: #F5F5DC;
    --text-gold: #FFD700;
    --dark-overlay: rgba(28, 28, 28, 0.95);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #DAA520 100%);
    --card-bg: #252525;
    --border-gold: #B8860B;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.top-bar {
    background: var(--primary-black);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    width: 60px;
    height: auto;
}

.logo:hover {
    color: var(--text-gold);
    transform: scale(1.05);
}

.crown {
    font-size: 20px;
}

.navbar {
    padding: 15px 0;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-beige);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-menu a.active {
    color: var(--accent-gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    animation: slideIn 0.3s ease;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-beige);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a:hover {
    background: var(--secondary-dark);
    color: var(--accent-gold);
    padding-left: 25px;
}

.dropdown-menu a.active {
    background: var(--secondary-dark);
    color: var(--accent-gold);
}

.dropdown-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1C1C1C 0%, #2F4F2F 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-pool.png') center/cover;
    z-index: -1;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.85) 0%, rgba(47, 79, 47, 0.75) 100%);
    z-index: -1;
    box-shadow: inset 0 0 200px rgba(212, 175, 55, 0.1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-beige);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-beige);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-form {
    background: rgba(28, 28, 28, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.form-container p {
    color: var(--text-beige);
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    background: rgba(37, 37, 37, 0.8);
    color: var(--text-beige);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(37, 37, 37, 1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 245, 220, 0.5);
}

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

/* Buttons */
.btn-primary {
    background: var(--button-burgundy);
    color: var(--text-beige);
    border: 2px solid var(--accent-gold);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #A50000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.5);
    border-color: var(--text-gold);
    color: var(--text-gold);
}

.btn-secondary {
    background: var(--secondary-dark);
    color: var(--text-beige);
    border: 2px solid var(--border-gold);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(47, 79, 47, 0.4);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: var(--text-gold);
}

/* Sections */
.experience-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
    box-shadow: inset 0 1px 30px rgba(212, 175, 55, 0.1);
}

.experience-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-beige);
    opacity: 0.95;
}

.amenities-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.amenities-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.amenities-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: var(--text-beige);
    opacity: 0.9;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.2), 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.3);
}

.amenity-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.amenity-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.journey-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.journey-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.journey-image {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.2);
}

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

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

.journey-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-beige);
    opacity: 0.95;
}

.journey-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.journey-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(37, 37, 37, 0.8);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-beige);
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.journey-link:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--text-gold);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.journey-link .icon {
    font-size: 1.5rem;
}

.why-choose-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.why-choose-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.features-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.feature-item.active {
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.3);
}

.feature-item.active::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-header:hover {
    background: rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-header h3 {
    flex: 1;
    font-size: 1.3rem;
    color: var(--text-beige);
    letter-spacing: 1px;
}

.toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.feature-item.active .toggle {
    transform: rotate(45deg);
}

.feature-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-item.active .feature-content {
    padding: 0 30px 25px;
    max-height: 200px;
}

.feature-content p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
}

.elite-rewards-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.rewards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rewards-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

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

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

.rewards-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.rewards-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-beige);
    opacity: 0.95;
}

.testimonials-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

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

.testimonial blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-beige);
    opacity: 0.95;
}

.testimonial-author {
    margin-bottom: 20px;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.author-location {
    color: var(--text-beige);
    margin-left: 10px;
    opacity: 0.8;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gold);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.age-notice {
    background: var(--secondary-dark);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--accent-gold);
    box-shadow: inset 0 1px 20px rgba(212, 175, 55, 0.1);
}

.age-notice p {
    font-size: 0.9rem;
    color: var(--text-beige);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 60px 0 30px;
    border-top: 2px solid var(--accent-gold);
    box-shadow: inset 0 1px 30px rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: start;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-beige);
    opacity: 0.9;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-dark);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--text-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-beige);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--accent-gold);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-beige);
    margin-bottom: 20px;
    opacity: 0.9;
}

.legal-disclaimer {
    background: rgba(37, 37, 37, 0.6);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.legal-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-beige);
    text-align: left;
    opacity: 0.9;
}

/* Popup Styles */
.cookie-popup,
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-popup.active,
.age-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-content,
.age-content {
    background: var(--primary-black);
    color: var(--text-beige);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.3);
    position: relative;
}

.cookie-content::before,
.age-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.cookie-content h3,
.age-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.cookie-content p,
.age-content p {
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-beige);
    opacity: 0.95;
}

.cookie-buttons,
.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept,
.btn-confirm {
    background: var(--button-burgundy);
    color: var(--text-beige);
    border: 2px solid var(--accent-gold);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-accept:hover,
.btn-confirm:hover {
    background: #A50000;
    border-color: var(--text-gold);
    color: var(--text-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-decline {
    background: var(--secondary-dark);
    color: var(--text-beige);
    border: 2px solid var(--border-gold);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: var(--card-bg);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */


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

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1C1C1C 0%, #2F4F2F 100%);
    padding: 150px 0 100px;
    text-align: center;
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: inset 0 -50px 100px rgba(212, 175, 55, 0.1);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-beige);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
}

/* About Page Styles */
.our-story-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-beige);
    opacity: 0.95;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

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

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

.mission-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.mission-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(37, 37, 37, 0.8) 60%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.value-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.leadership-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.leadership-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.team-member:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.position {
    font-weight: 600;
    color: var(--text-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.team-member p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.awards-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.awards-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-item {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(37, 37, 37, 0.8) 60%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.award-item:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.award-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.award-item p {
    color: var(--text-beige);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.community-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.community-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-beige);
    opacity: 0.95;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 20px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat:hover {
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.stat p {
    color: var(--text-beige);
    font-weight: 600;
}

.community-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.community-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-info-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.contact-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.contact-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.contact-card p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-form-map-section {
    background: var(--primary-black);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.map-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.contact-form-container p {
    color: var(--text-beige);
    margin-bottom: 30px;
    opacity: 0.95;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    padding: 15px;
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    background: rgba(37, 37, 37, 0.8);
    color: var(--text-beige);
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    outline: none;
    background: rgba(37, 37, 37, 1);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

.main-contact-form input::placeholder,
.main-contact-form select::placeholder,
.main-contact-form textarea::placeholder {
    color: rgba(245, 245, 220, 0.5);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    color: var(--text-beige);
    font-size: 14px;
    opacity: 0.9;
}

.map-info {
    margin-top: 30px;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.map-info p {
    color: var(--text-beige);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.transportation-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-beige);
    opacity: 0.9;
}

.transport-icon {
    font-size: 1.2rem;
}

.faq-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.faq-item.active {
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.faq-item.active::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-beige);
    margin: 0;
    letter-spacing: 0.5px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
}

/* Legal Pages Styles */
.privacy-content-section,
.terms-content-section,
.cookie-content-section {
    background: var(--card-bg);
    color: var(--text-beige);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.privacy-content,
.terms-content,
.cookie-policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 15px 40px rgba(0, 0, 0, 0.8);
}

.privacy-content::before,
.terms-content::before,
.cookie-policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.privacy-content h2,
.terms-content h2,
.cookie-policy-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.privacy-content h3,
.terms-content h3,
.cookie-policy-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-gold);
    letter-spacing: 0.5px;
}

.privacy-content p,
.terms-content p,
.cookie-policy-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-beige);
    opacity: 0.95;
}

.privacy-content ul,
.terms-content ul,
.cookie-policy-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.privacy-content li,
.terms-content li,
.cookie-policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-beige);
    opacity: 0.9;
}

.contact-info {
    background: rgba(37, 37, 37, 0.6);
    border: 2px solid var(--border-gold);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-beige);
    opacity: 0.95;
}

.legal-notice {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.legal-notice p {
    color: var(--text-beige);
    font-weight: 500;
    opacity: 0.95;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--primary-black);
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-gold);
}

.cookie-table th {
    background: var(--secondary-dark);
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cookie-table td {
    color: var(--text-beige);
    opacity: 0.9;
}

.cookie-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   EPIC ESCAPES PAGE STYLES
======================================== */
.epic-escapes-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

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

.intro-text p {
    color: var(--text-beige);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hotel-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 60px;
}

.hotel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.2), 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.3);
}

.hotel-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.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;
    height: 100%;
    min-height: 400px;
    z-index: 2;
}

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

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

.hotel-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hotel-content h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.hotel-content p {
    color: var(--text-beige);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.closing-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.closing-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.closing-text p {
    color: var(--text-beige);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ========================================
   BEYOND THE GAMES PAGE STYLES
======================================== */
.beyond-games-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.destination-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 60px;
}

.destination-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.2), 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.3);
}

.destination-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

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

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

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

.destination-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    z-index: 2;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.destination-content h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.destination-content p {
    color: var(--text-beige);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========================================
   THE GAMING FLOOR PAGE STYLES
======================================== */
.gaming-floor-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.gaming-venue-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 60px;
}

.gaming-venue-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gaming-venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.gaming-venue-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.2), 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.3);
}

.gaming-venue-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

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

.gaming-venue-card.reverse .venue-image {
    order: 2;
}

.gaming-venue-card.reverse .venue-content {
    order: 1;
}

.venue-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    z-index: 2;
}

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

.gaming-venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.venue-content h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.venue-content p {
    color: var(--text-beige);
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========================================
   WINE RACK PAGE STYLES
======================================== */
.wine-rack-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.wine-rack-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wine-description {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.wine-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.wine-description p {
    color: var(--text-beige);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.wine-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.info-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.info-card p {
    color: var(--text-beige);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.hours-list {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gold);
}

.hours-item .day {
    font-weight: 600;
    color: var(--accent-gold);
}

.hours-item .time {
    color: var(--text-beige);
    opacity: 0.9;
}

.wine-features {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.wine-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.wine-features h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

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

.features-grid .feature-item {
    padding: 30px;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(37, 37, 37, 0.8) 60%);
    border-radius: 15px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-grid .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.features-grid .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.features-grid .feature-item:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.features-grid .feature-item h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.features-grid .feature-item p {
    color: var(--text-beige);
    line-height: 1.6;
    opacity: 0.9;
}

/* ========================================
   SCHEDULE OF EVENTS PAGE STYLES
======================================== */
.schedule-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.schedule-section h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.event-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.2), 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.3);
}

.event-card:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--button-burgundy);
    color: var(--text-beige);
    border: 1px solid var(--accent-gold);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.4);
    z-index: 3;
}

.event-card h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.event-date {
    color: var(--text-gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.event-sub {
    color: var(--button-burgundy);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.event-description {
    color: var(--text-beige);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.event-card .btn-secondary {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.schedule-cta {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.schedule-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.schedule-cta h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.schedule-cta p {
    color: var(--text-beige);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.event-info {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.event-info h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.event-info ul {
    list-style: none;
    padding: 0;
}

.event-info li {
    color: var(--text-beige);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-gold);
    opacity: 0.9;
}

.event-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ========================================
   AVALON THEATRE PAGE STYLES
======================================== */
.avalon-theatre-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.theatre-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.theatre-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.theatre-intro p {
    color: var(--text-beige);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.theatre-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.theatre-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(37, 37, 37, 0.6);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
}

.theatre-contact .contact-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.theatre-contact h3 {
    color: var(--accent-gold);
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.theatre-contact p {
    color: var(--text-beige);
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.95;
}

.upcoming-events {
    margin-bottom: 60px;
}

.upcoming-events h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

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

.event-item {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.event-item:hover::before {
    background: linear-gradient(225deg, var(--text-gold) 0%, var(--button-burgundy) 50%, var(--text-gold) 100%);
}

.event-item h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.event-item .event-date {
    color: var(--text-gold);
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.event-link {
    display: inline-block;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.entertainment-faqs {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.entertainment-faqs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.entertainment-faqs h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    letter-spacing: 2px;
}

.theatre-notice {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.theatre-notice p {
    color: var(--text-beige);
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.theatre-notice strong {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ========================================
   SEATING CHART PAGE STYLES
======================================== */
.seating-chart-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.seating-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.seating-intro p {
    color: var(--text-beige);
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.seating-chart-display {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.seating-chart-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.seating-chart-display img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.seating-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.seating-info {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.seating-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.seating-info h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background: rgba(37, 37, 37, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--text-beige);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.95;
}

.accessibility-info,
.ticket-info {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.accessibility-info::before,
.ticket-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.accessibility-info h2,
.ticket-info h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.accessibility-info p,
.ticket-info p {
    color: var(--text-beige);
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.accessibility-info a,
.ticket-info a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accessibility-info a:hover,
.ticket-info a:hover {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ========================================
   DRAGONFLY NIGHTCLUB PAGE STYLES
======================================== */
.nightclub-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
}

.announcement-card {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, var(--primary-black) 60%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.15), 0 15px 40px rgba(0, 0, 0, 0.8);
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.announcement-card h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    letter-spacing: 2px;
}

.announcement-card p {
    color: var(--text-beige);
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.status-info {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.status-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.status-info h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.status-badge {
    display: inline-block;
    background: var(--button-burgundy);
    color: var(--text-beige);
    border: 2px solid var(--accent-gold);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.3);
}

.stay-connected {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.stay-connected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stay-connected h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.stay-connected > p {
    color: var(--text-beige);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.newsletter-signup {
    margin-bottom: 40px;
}

.newsletter-signup h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(37, 37, 37, 0.8);
    color: var(--text-beige);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(245, 245, 220, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-follow h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-icons-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-icons-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(37, 37, 37, 0.6);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    color: var(--text-beige);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--text-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.explore-more {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, var(--primary-black) 60%);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0, 0, 0, 0.8);
}

.explore-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--button-burgundy) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.explore-more h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.explore-more > p {
    color: var(--text-beige);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

.entertainment-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.entertainment-card {
    padding: 30px;
    background: rgba(37, 37, 37, 0.6);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.entertainment-card:hover {
    background: var(--accent-gold);
    border-color: var(--text-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.entertainment-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.entertainment-card h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.entertainment-card:hover h3,
.entertainment-card:hover p {
    color: var(--primary-black);
}

.entertainment-card p {
    color: var(--text-beige);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   WHO WE ARE SECTION (About Page)
======================================== */
.who-we-are-section {
    background: var(--card-bg);
    padding: 100px 0;
    border-top: 1px solid var(--accent-gold);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-black);
    border: 2px solid var(--accent-gold);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
}

.about-content p {
    color: var(--text-beige);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    /* Tablet adjustments */
    .hero {
        height: auto;
        min-height: 80vh;
        padding-top: 60px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 40px;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .experience-content {
        gap: 30px;
    }
    
    .experience-section,
    .amenities-section,
    .journey-section,
    .why-choose-section,
    .elite-rewards-section,
    .testimonials-section {
        padding: 80px 0;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rewards-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .community-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .events-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .entertainment-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .wine-info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hotel-card,
    .hotel-card.reverse,
    .destination-card,
    .destination-card.reverse,
    .gaming-venue-card,
    .gaming-venue-card.reverse {
        gap: 30px;
    }
    
    .hotel-content,
    .destination-content,
    .venue-content {
        padding: 35px !important;
    }
    
    .wine-description,
    .wine-features,
    .seating-info,
    .stay-connected,
    .explore-more {
        padding: 40px 35px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 70vh;
    }
    
    .experience-section,
    .amenities-section,
    .journey-section,
    .why-choose-section,
    .elite-rewards-section,
    .testimonials-section,
    .epic-escapes-section,
    .beyond-games-section,
    .gaming-floor-section,
    .wine-rack-section,
    .schedule-section,
    .avalon-theatre-section,
    .seating-chart-section,
    .nightclub-section,
    .who-we-are-section,
    .contact-info-section,
    .contact-form-map-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        min-height: 100vh;
        padding: 20px;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 10px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 10px;
        min-width: 100%;
        background: var(--secondary-blue);
        box-shadow: none;
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown-menu {
        position: static;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .arrow {
        display: inline-block;
        margin-left: 5px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: end;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rewards-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .google-map iframe {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cookie-buttons,
    .age-buttons {
        flex-direction: column;
    }
    
    /* New Pages Responsive Styles */
    .hotel-card,
    .hotel-card.reverse,
    .destination-card,
    .destination-card.reverse,
    .gaming-venue-card,
    .gaming-venue-card.reverse {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    
    .hotel-cards,
    .destination-cards,
    .gaming-venue-cards {
        gap: 60px;
    }
    
    .hotel-card.reverse .hotel-image,
    .destination-card.reverse .destination-image,
    .gaming-venue-card.reverse .venue-image {
        order: 1;
    }
    
    .hotel-card.reverse .hotel-content,
    .destination-card.reverse .destination-content,
    .gaming-venue-card.reverse .venue-content {
        order: 2;
    }
    
    .hotel-image,
    .destination-image,
    .venue-image {
        min-height: 300px;
    }
    
    .hotel-content,
    .destination-content,
    .venue-content {
        padding: 25px !important;
    }
    
    .hotel-content h2,
    .destination-content h2,
    .venue-content h2 {
        font-size: 1.8rem;
    }
    
    .wine-description,
    .wine-features,
    .seating-info,
    .stay-connected,
    .explore-more {
        padding: 30px 25px !important;
    }
    
    .wine-info-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .events-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-icons-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .entertainment-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .theatre-actions {
        flex-direction: column;
    }
    
    .seating-actions {
        flex-direction: column;
    }
    
    .social-icons-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .entertainment-links {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .wine-description,
    .theatre-intro,
    .about-content,
    .entertainment-faqs {
        padding: 25px !important;
    }
    
    .schedule-cta {
        padding: 40px 30px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
    }
    
    .theatre-actions,
    .seating-actions {
        width: 100%;
    }
    
    .theatre-actions .btn-primary,
    .theatre-actions .btn-secondary,
    .seating-actions .btn-primary,
    .seating-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: auto;
        min-height: 60vh;
        
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .experience-section,
    .amenities-section,
    .journey-section,
    .why-choose-section,
    .elite-rewards-section,
    .testimonials-section,
    .epic-escapes-section,
    .beyond-games-section,
    .gaming-floor-section,
    .wine-rack-section,
    .schedule-section,
    .avalon-theatre-section,
    .seating-chart-section,
    .nightclub-section,
    .who-we-are-section,
    .contact-info-section,
    .contact-form-map-section,
    .faq-section,
    .our-story-section,
    .mission-section,
    .leadership-section,
    .awards-section,
    .community-section {
        padding: 50px 0;
    }
    
    .cookie-content,
    .age-content {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-icons-large {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .journey-images {
        gap: 15px;
    }
    
    .amenities-grid {
        gap: 20px;
    }
    
    .events-grid,
    .events-list {
        gap: 20px;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .wine-info-cards {
        gap: 20px;
    }
    
    .entertainment-links {
        gap: 20px;
    }
    
    .values-grid,
    .awards-grid {
        gap: 20px;
    }
    
    /* New Pages Mobile Styles */
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .hotel-content,
    .destination-content,
    .venue-content {
        padding: 20px 15px !important;
    }
    
    .hotel-content h2,
    .destination-content h2,
    .venue-content h2 {
        font-size: 1.5rem;
    }
    
    .wine-description,
    .theatre-intro,
    .about-content {
        padding: 20px 15px !important;
    }
    
    .wine-features,
    .seating-info,
    .stay-connected,
    .explore-more,
    .entertainment-faqs {
        padding: 25px 15px !important;
    }
    
    .schedule-cta {
        padding: 30px 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons-large {
        grid-template-columns: 1fr;
    }
    
    .announcement-card {
        padding: 40px 20px;
    }
    
    .announcement-card h2 {
        font-size: 1.8rem;
    }
    
    .event-card {
        padding: 25px 20px;
    }
    
    .event-card h3 {
        font-size: 1.5rem;
    }
    
    .schedule-section h2,
    .upcoming-events h2 {
        font-size: 2rem;
    }
    
    .seating-chart-display {
        padding: 20px;
    }
    
    .theatre-notice,
    .event-info,
    .accessibility-info,
    .ticket-info {
        padding: 25px 20px;
    }
    
    .amenities-section h2,
    .experience-section h2,
    .journey-section h2,
    .why-choose-section h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .event-card {
        padding: 25px 15px;
    }
    
    .event-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .journey-links {
        gap: 15px;
    }
    
    .journey-link {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .top-bar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        width: 24px;
        height: 24px;
    }
}