﻿
/* Base Styles */
.dilkash-hotels {
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}



/* Hero Section */
.site-hero {
    height: 45vh;
    background: linear-gradient(135deg, #ed1b24 0%, #ed1b24 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.hero-content {
    color: white;
    max-width: 800px;
}

    .hero-content h1 {
        font-size: 4rem;
        margin-bottom: 0.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

.subtitle {
    font-size: 1rem;
    font-style: italic;
    position: relative;
    display: inline-block;
}

    .subtitle::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: beige;
    }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 20px;
}

    .hero-meta span {
        display: flex;
        align-items: center;
        font-size: 1rem;
    }

    .hero-meta i {
        margin-right: 0.5rem;
        color: beige;
    }
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

    .section-title span {
        color: var(--primary-color);
    }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin: 0 auto;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.hotel-card {
    background-color: var(--white);
    border-radius: 13px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

    .hotel-card:hover {
        transform: translateY(-20px) !important;
    }

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.25, 0.45, 0.45, 0.95);
    }

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.stars {
    color: #ffc107;
    display: flex;
    gap: 2px;
}

.hotel-content {
    padding: 25px 25px 5px 25px;
}

    .hotel-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--dark-color);
        font-family: 'Playfair Display', serif;
    }

.amenities {
    display: flex;
/*    flex-wrap: wrap;*/
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-evenly
}

    .amenities span {
        display: flex;
        align-items: center;
        font-size: 0.8rem;
        width: max-content;
        padding: 0px 10px;
        border-radius: 20px;
        color: var(--text-color);
    }

        .amenities span i {
            margin-right: 5px;
            color: var(--secondary-color);
        }



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hotels-hero {
        height: 45vh;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hotels-hero {
        height: 40vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hotel-content h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .site-hero {
        height: 30vh;
    }
    .hotels-hero {
        height: 35vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .price-book {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-donate {
        display: block;
    }
    
}
