:root {
    --primary-yellow: #e6c36f;
}

.hero-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80"); */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("../img/about-us.jpg");
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.amenities-section {
    /* background: #f8f9fa; */
    padding: 80px 0;
}

.amenities-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.amenities-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.amenity-card {
    border: 1px solid #bababa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.amenity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.amenity-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}


/*  */
.premium-amenities-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pa-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pa-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    /* margin-bottom: 1.5rem; */
    max-width: 600px; 
    margin: 20px auto;
}


.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 5px 20px;
    background: #FFFFFF;
    border: 1px solid #BABABA;
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-tab.active {
    background: #e6c36f;
    color: #000;
    border-color: #e6c36f;
}

.filter-tab:hover {
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
}

.filter-tab.active:hover {
    background: #e6c36f;
    color: var(--text-dark);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.4;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
}

.feature-item:before {
    content: "✓";
    color: #10b981;
    margin-right: 6px;
    font-size: 12px;
    font-weight: bold;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 0.5rem;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.btn-read-small {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-read-small:hover {
    background-color: var(--primary-yellow);
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}


/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    opacity: 0.7;
}
