/* Bình Minh Hotel Specific Styles */
.hotel-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hotel-hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out;
}

.hotel-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hotel-tagline {
    font-size: 1.5rem;
    color: #FCD34D;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hotel-description {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hotel-hero-image {
    flex: 1;
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 50px;
    filter: sepia(20%) contrast(1.1);
}

.hotel-features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.menu-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 100%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #8B4513;
    text-align: center;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-radius: 2px;
}

.menu-items {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: rgba(139, 69, 19, 0.05);
    padding-left: 1rem;
    border-radius: 10px;
}

.item-name {
    font-weight: 600;
    color: #8B4513;
    font-size: 1.1rem;
}

.item-price {
    font-weight: 700;
    color: #CD853F;
    font-size: 1.1rem;
}

.booking-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #8B4513;
    text-align: center;
}

.booking-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.booking-btn {
    grid-column: 1 / -1;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    color: var(--text-white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    margin-top: 1rem;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.booking-btn:hover::before {
    left: 100%;
}

.booking-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(139, 69, 19, 0.4),
        0 0 20px rgba(139, 69, 19, 0.3);
}

.booking-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.1);
    text-align: center;
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #8B4513;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #8B4513;
    font-size: 1.1rem;
}

.contact-details i {
    color: #CD853F;
    width: 20px;
}

.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #FFF8DC 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.review-card:hover::before {
    opacity: 0.03;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 16px 40px rgba(139, 69, 19, 0.15),
        0 0 25px rgba(139, 69, 19, 0.1);
}

.review-card > * {
    position: relative;
    z-index: 1;
}

.review-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.review-rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #8B4513;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-author {
    text-align: center;
}

.review-author strong {
    display: block;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-author span {
    color: #CD853F;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hotel-hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 80px;
    }
    
    .hotel-hero-content {
        padding: 2rem 1rem;
    }
    
    .hotel-title {
        font-size: 2.5rem;
    }
    
    .hotel-hero-image {
        height: 300px;
        border-radius: 15px;
        margin: 2rem 1rem 0;
    }
    
    .hotel-hero-image img {
        border-radius: 15px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form-fields {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
