/* ================================================ ROOMS PAGE ================================================ */

.rooms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rooms-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.rooms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.rooms-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
}

.rooms-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.rooms-hero p {
    font-size: 18px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.rooms-card {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.rooms-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.rooms-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(44, 62, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.rooms-card:hover::after {
    opacity: 1;
}

.rooms-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.rooms-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.rooms-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.rooms-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.rooms-status-badge.available {
    background: #2ecc71;
    color: white;
}

.rooms-status-badge.booked {
    background: #e74c3c;
    color: white;
}

.rooms-status-badge.maintenance {
    background: #f39c12;
    color: white;
}

.rooms-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.rooms-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.rooms-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.rooms-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rooms-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.rooms-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
}

.rooms-info-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.rooms-amenities {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.rooms-amenity {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rooms-amenity i {
    color: #2ecc71;
    font-size: 12px;
}

.rooms-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.rooms-price-item {
    text-align: center;
}

.rooms-price-label {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.rooms-price-original {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.rooms-price-current {
    display: block;
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
}

.rooms-savings {
    text-align: center;
    font-size: 12px;
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 15px;
}

.rooms-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.rooms-book-btn,
.rooms-explore-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rooms-book-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
}

.rooms-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.rooms-explore-btn {
    background: #e9ecef;
    color: var(--secondary-color);
}

.rooms-explore-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.rooms-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.rooms-see-more-btn,
.rooms-see-less-btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.rooms-see-more-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
}

.rooms-see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.rooms-see-less-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: var(--primary-color);
}

.rooms-see-less-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #495057, #6c757d);
}

/* ================================================ TABLES PAGE ================================================ */

.tables-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tables-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #d4af37, #2c3e50);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 60px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tables-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.tables-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
}

.tables-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tables-hero p {
    font-size: 18px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tables-card {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.tables-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.tables-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(44, 62, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: var(--border-radius);
}

.tables-card:hover::after {
    opacity: 1;
}

.tables-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.tables-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.tables-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.tables-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.tables-status-badge.available {
    background: #2ecc71;
    color: white;
}

.tables-status-badge.booked {
    background: #e74c3c;
    color: white;
}

.tables-status-badge.reserved {
    background: #f39c12;
    color: white;
}

.tables-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tables-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
}

.tables-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.tables-location-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #2c3e50);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.tables-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tables-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.tables-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 500;
}

.tables-info-item i {
    color: #d4af37;
    font-size: 16px;
}

.tables-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tables-feature {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 6px;
}

.tables-feature i {
    color: #d4af37;
    font-size: 12px;
}

.tables-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.tables-price-item {
    text-align: center;
}

.tables-price-label {
    display: block;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.tables-price-original {
    display: block;
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.tables-price-current {
    display: block;
    font-size: 18px;
    color: #d4af37;
    font-weight: 700;
}

.tables-savings {
    text-align: center;
    font-size: 12px;
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 15px;
}

.tables-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.tables-reserve-btn,
.tables-explore-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tables-reserve-btn {
    background: linear-gradient(135deg, #d4af37, #2c3e50);
    color: var(--primary-color);
}

.tables-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #2c3e50, #d4af37);
}

.tables-explore-btn {
    background: #e9ecef;
    color: var(--secondary-color);
}

.tables-explore-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.tables-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 30px 0;
}

.tables-see-more-btn,
.tables-see-less-btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.tables-see-more-btn {
    background: linear-gradient(135deg, #d4af37, #2c3e50);
    color: var(--primary-color);
}

.tables-see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #2c3e50, #d4af37);
}

.tables-see-less-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: var(--primary-color);
}

.tables-see-less-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #495057, #6c757d);
}

@media (max-width: 768px) {
    .rooms-hero, .tables-hero {
        height: 250px;
    }

    .rooms-hero h1, .tables-hero h1 {
        font-size: 36px;
    }

    .rooms-hero p, .tables-hero p {
        font-size: 16px;
    }

    .rooms-grid, .tables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-pagination, .tables-pagination {
        flex-direction: column;
        gap: 10px;
    }

    .rooms-see-more-btn, .rooms-see-less-btn,
    .tables-see-more-btn, .tables-see-less-btn {
        width: 100%;
        text-align: center;
    }
}
