/* ========================================
   HOTEL DETAIL PAGE STYLES
   ======================================== */

/* ========== HERO SLIDER ========== */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide-item.active {
    opacity: 1;
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Brighter overlay for Eldon Villas */
body:has([href*="eldon"]) .hero-slide-item::before {
    background: rgba(0, 0, 0, 0.25);
}

.eldon-hero .hero-slide-item::before {
    background: rgba(0, 0, 0, 0.2) !important;
}

.eldon-hero .hero-slide-item {
    filter: brightness(1.15);
}

/* ========== HOTEL HERO ========== */
.hotel-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotel-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.hotel-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hotel-location {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hotel-location i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.hotel-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

/* ========== HOTEL OVERVIEW ========== */
.hotel-overview {
    padding: var(--section-padding);
    background: var(--off-white);
}

.overview-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.awards-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.awards-badge i {
    font-size: 3rem;
}

.awards-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.awards-badge p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ========== AMENITIES SECTION ========== */
.amenities-section {
    padding: var(--section-padding);
    background: var(--beige-light);
    text-align: center;
}

.amenities-section .section-title {
    margin-bottom: 1rem;
}

.amenities-section .section-divider {
    margin: 0 auto 4rem;
}

.amenities-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.amenity-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.amenity-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--off-white);
    text-align: center;
}

.gallery-section .section-title {
    margin-bottom: 1rem;
}

.gallery-section .section-divider {
    margin: 0 auto 4rem;
}

.gallery-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* ========== LOCATION SECTION ========== */
.location-section {
    padding: var(--section-padding);
    background: var(--beige-light);
}

.location-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.detail-item span {
    font-size: 1rem;
    color: var(--text-medium);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-dark));
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-gold);
}

.cta-section .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-gold);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {
    .overview-container,
    .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hotel-hero {
        height: 60vh;
        margin-top: 70px;
    }
    
    .hotel-hero .hero-image {
        background-attachment: scroll;
    }
    
    .hotel-name {
        font-size: 2.5rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
}

/* ========== ROOM TYPES SECTION ========== */
.room-types-section {
    padding: 6rem 5%;
    background: var(--off-white);
}

.room-types-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.room-types-section .section-divider {
    margin: 0 auto 1rem;
}

.room-types-section .section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.room-types-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-type-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.room-type-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.15);
}

.room-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.room-type-card:hover .room-type-icon {
    transform: scale(1.1) rotateY(180deg);
}

.room-type-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.room-capacity {
    color: var(--primary-gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.room-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.room-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.room-options span {
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.room-options span i {
    color: var(--primary-gold);
}

.room-types-cta {
    text-align: center;
    margin-top: 4rem;
}

.room-types-cta p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.room-types-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .room-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Increase brightness for Eldon Villas hero */
.hotel-hero .hero-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Specific styling for eldon page - lighter overlay */
body.eldon-page .hotel-hero .hero-slider-container::after {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: brightness(1.3);
}

/* ========== BACKGROUND IMAGES FOR SECTIONS ========== */
/* Amenities Section with Background */
.amenities-section {
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
}

.amenities-section .section-title,
.amenities-section .section-divider,
.amenities-section .amenities-grid {
    position: relative;
    z-index: 1;
}

/* Room Types Section with Background */
.room-types-section {
    position: relative;
    overflow: hidden;
}

.room-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.room-types-section .section-title,
.room-types-section .section-divider,
.room-types-section .section-subtitle,
.room-types-section .room-types-grid,
.room-types-section .room-types-cta {
    position: relative;
    z-index: 1;
}

/* Silver Rock Specific Backgrounds */
body.silver-rock-page .amenities-section::before {
    background-image: url('../images/Silver_Rock-13.jpg');
}

body.silver-rock-page .room-types-section::before {
    background-image: url('../images/Silver_Rock-2__2_.jpg');
}

/* Paradise Farm Specific Backgrounds */
body.paradise-page .amenities-section::before {
    background-image: url('../images/Paradise-79.jpg');
}

body.paradise-page .room-types-section::before {
    background-image: url('../images/Paradise-32.jpg');
}

/* Eldon Villas Specific Backgrounds */
body.eldon-page .amenities-section::before {
    background-image: url('../images/eldon-reception.jpg');
}

body.eldon-page .room-types-section::before {
    background-image: url('../images/GOPR2349_JPG.jpeg');
}

/* ========== MOBILE RESPONSIVENESS FOR HOTEL PAGES ========== */

@media (max-width: 768px) {
    /* Hero */
    .hotel-hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .hotel-hero img {
        max-height: 150px !important;
    }
    
    .hotel-name {
        font-size: 2.5rem;
    }
    
    .hotel-location {
        font-size: 1.1rem;
    }
    
    .hotel-tagline {
        font-size: 1rem;
    }
    
    /* Overview */
    .overview-container {
        flex-direction: column;
        padding: 0 5%;
    }
    
    .overview-content,
    .overview-stats {
        padding: 0;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .amenity-card {
        padding: 1.5rem 1rem;
    }
    
    .amenity-card i {
        font-size: 2rem;
    }
    
    /* Room Types */
    .room-types-grid {
        grid-template-columns: 1fr;
    }
    
    .room-type-card {
        padding: 2rem 1.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-section {
        padding: 4rem 5%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hotel-hero {
        min-height: 350px;
    }
    
    .hotel-name {
        font-size: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
}
