/* Page Header Styles */
.page-header {
    background-color: var(--background-dark);
    color: var(--light-text);
    padding: 3rem 0;
    position: relative;
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 20px solid var(--background-dark);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-content {
    padding: 3rem 0;
    min-height: 500px;
    background-color: var(--background-light);
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card-body {
    padding: 1.5rem;
}

.content-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.content-card .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
    display: block;
}

/* Hotel Information Section */
.hotel-info {
    padding: 2rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Room Gallery */
.room-gallery img {
    width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Booking Form */
.booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

/* Room Types Section */
.room-types {
    margin: 3rem 0;
}

.room-types h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-text);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--dark-text);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Content Blocks */
.content-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-block h2 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .hotel-info {
        padding: 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .map-container {
        margin-bottom: 1.5rem;
    }

    .directions {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-card {
        margin: 0 1rem;
    }

    .booking-form {
        margin: 0 1rem;
    }
}

/* Animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
}

.form-submit {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: var(--secondary-color);
}

/* Date Picker Styles */
.flatpickr-calendar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.flatpickr-day.selected:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Event Filters */
.event-filters {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

/* Event Grid */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.event-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.event-date .month {
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
}

.event-date .day {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    margin-top: 0.25rem;
}

.event-details {
    padding: 1.5rem;
}

.event-details h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.event-meta i {
    color: var(--primary-color);
}

.event-meta i:not(:first-child) {
    margin-left: 1rem;
}

.event-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.event-actions .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.event-actions .cta-button {
    float: right;
}

.load-more {
    text-align: center;
    margin: 3rem 0;
}

.load-more .cta-button {
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .event-filters {
        grid-template-columns: 1fr;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        margin: 0 1rem;
    }
}

/* Game Categories */
.game-categories {
    margin-top: 40px;
}

.game-section {
    margin-bottom: 60px;
}

.game-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.game-header h2 i {
    color: #e31837;
    margin-right: 10px;
}

.game-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Game Cards */
.game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.game-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.game-meta .location {
    color: #666;
    font-size: 0.9rem;
}

.game-meta .location i {
    color: #e31837;
    margin-right: 5px;
}

/* Game Finder Filters */
.game-filters {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.filter-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.filter-actions .reset-filters {
    background-color: #f5f5f5;
    color: #333;
}

.filter-actions .apply-filters {
    background-color: #e31837;
    color: white;
}

.filter-actions button:hover {
    opacity: 0.9;
}

/* Game Results */
.game-results {
    margin-top: 30px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-count {
    color: #666;
}

.sort-options {
    display: flex;
    gap: 15px;
}

.sort-options select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-header h2 {
        font-size: 1.8rem;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
    }

    .filter-actions button {
        width: 100%;
    }

    .results-header {
        flex-direction: column;
        gap: 15px;
    }

    .sort-options {
        width: 100%;
        justify-content: space-between;
    }
}

/* List View Styles */
.content-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-list .game-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: auto;
}

.content-list .game-card img {
    height: 100%;
    object-fit: cover;
}

.content-list .game-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-list .game-meta {
    margin-top: auto;
}

@media (max-width: 768px) {
    .content-list .game-card {
        grid-template-columns: 1fr;
    }

    .content-list .game-card img {
        height: 200px;
    }
}

/* Rewards Signup Section */
.rewards-signup {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.rewards-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #e31837;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.rewards-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Promotions Grid */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.promo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-image {
    position: relative;
    height: 200px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e31837;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-content {
    padding: 20px;
}

.promo-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.promo-dates {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.promo-description {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Promotion Details */
.promo-details {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.details-toggle {
    background: none;
    border: none;
    color: #e31837;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.details-content ul {
    list-style: none;
    padding: 15px 0 0;
    margin: 0;
}

.details-content li {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.details-content li:before {
    content: "•";
    color: #e31837;
    position: absolute;
    left: 0;
}

/* Rewards Tiers */
.rewards-tiers {
    margin: 60px 0;
    text-align: center;
}

.rewards-tiers h2 {
    margin-bottom: 40px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tier-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tier-header {
    padding: 20px;
    color: white;
}

.tier-header.red {
    background: #e31837;
}

.tier-header.gold {
    background: #ffd700;
    color: #333;
}

.tier-header.platinum {
    background: #e5e4e2;
    color: #333;
}

.tier-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.tier-benefits {
    list-style: none;
    padding: 20px;
    margin: 0;
    text-align: left;
}

.tier-benefits li {
    margin-bottom: 10px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.tier-benefits li:before {
    content: "✓";
    color: #e31837;
    position: absolute;
    left: 0;
}

/* Terms Section */
.terms-section {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.terms-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.terms-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rewards-signup {
        grid-template-columns: 1fr;
    }

    .rewards-image {
        order: -1;
    }

    .rewards-content h2 {
        font-size: 1.8rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
}

.restaurant-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 400px 1fr;
}

.restaurant-image {
    position: relative;
    height: 100%;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cuisine-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e31837;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.restaurant-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.restaurant-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333;
}

.highlights i {
    color: #e31837;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.restaurant-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.hours h4 {
    color: #333;
    margin-bottom: 10px;
}

.hours p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.price-range {
    text-align: right;
}

.price {
    color: #e31837;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.label {
    color: #666;
    font-size: 0.9rem;
}

.restaurant-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn-menu,
.btn-reserve {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-menu {
    background: #f5f5f5;
    color: #333;
    flex: 1;
}

.btn-reserve {
    background: #e31837;
    color: white;
    flex: 1;
}

.btn-menu:hover {
    background: #e8e8e8;
}

.btn-reserve:hover {
    background: #c41530;
}

/* Reservations CTA */
.reservations-cta {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/feature-images/skyline.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Private Dining Section */
.private-dining {
    margin: 60px 0;
}

.private-dining-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.private-dining-info {
    padding-right: 40px;
}

.private-dining-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
}

.features-list i {
    color: #e31837;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.private-dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .restaurant-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .restaurant-card {
        grid-template-columns: 1fr;
    }

    .restaurant-image {
        height: 250px;
    }

    .restaurant-content {
        padding: 20px;
    }

    .restaurant-meta {
        flex-direction: column;
        gap: 20px;
    }

    .price-range {
        text-align: left;
    }

    .private-dining-content {
        grid-template-columns: 1fr;
    }

    .private-dining-info {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .restaurant-actions {
        flex-direction: column;
    }

    .btn-menu,
    .btn-reserve {
        width: 100%;
    }
}

/* Mobile Ordering Section */
.mobile-ordering {
    margin: 60px 0;
}

.mobile-ordering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-ordering-info {
    padding-right: 40px;
}

.mobile-ordering-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-button {
    display: block;
    transition: transform 0.3s;
}

.app-button:hover {
    transform: translateY(-3px);
}

.app-button img {
    height: 40px;
    width: auto;
}

.mobile-ordering-image {
    position: relative;
}

.mobile-ordering-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-order {
    background: #e31837;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    flex: 1;
}

.btn-order:hover {
    background: #c41530;
}

@media (max-width: 768px) {
    .mobile-ordering-content {
        grid-template-columns: 1fr;
    }

    .mobile-ordering-info {
        padding-right: 0;
    }

    .app-buttons {
        justify-content: center;
    }
}

/* Venue Grid */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.venue-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.venue-image {
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.venue-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Entertainment Schedule */
.entertainment-schedule {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-date {
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
}

.schedule-date .day {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.schedule-date .date {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.schedule-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.schedule-info p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.genre {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--background-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-right: 0.5rem;
}

.schedule-actions {
    margin-top: auto;
}

.btn-view-all {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background: var(--secondary-color);
}

/* VIP Services */
.vip-services {
    margin: 4rem 0;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.vip-info {
    padding-right: 2rem;
}

.vip-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.vip-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .venue-card {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .venue-card {
        margin: 0;
    }

    .venue-image {
        height: 200px;
    }

    .venue-content {
        padding: 1rem;
    }

    .schedule-card {
        flex-direction: column;
        text-align: center;
    }

    .schedule-date {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0 0 1rem 0;
        margin-bottom: 1rem;
    }

    .vip-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .vip-info {
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        margin: 0 1rem;
    }

    .schedule-date {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Location Section */
.location-section {
    margin: 3rem 0;
}

.map-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.directions {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.directions h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.directions ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.directions li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

/* Policy Cards */
.policy-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-card h3 {
    margin-bottom: 1rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-card li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Additional Information */
.additional-info {
    margin: 4rem 0;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Print Styles */
@media print {
    .page-header {
        background: none;
        color: var(--dark-text);
        padding: 1rem 0;
    }

    .page-header h1 {
        color: var(--dark-text);
    }

    .content-card,
    .booking-form,
    .policy-card,
    .info-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .booking-form,
    .cta-section,
    .load-more {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .page-header {
        background: #000;
    }

    .content-card,
    .booking-form,
    .policy-card {
        border: 2px solid #000;
    }

    .form-submit {
        background: #000;
        color: #fff;
    }
} 