/* ========================================
   HOTEL PAGE - Alpine-Modern Luxury Style
   ======================================== */

/* Uses shared .page-hero styles from camere.css */

/* ========================================
   SERVICE SECTIONS
   ======================================== */

.service-section {
    padding: var(--space-3xl) 0;
}

.service-section:nth-child(even) {
    background: var(--bg-secondary);
}

.service-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.service-section--reverse .service-section__grid {
    direction: rtl;
}

.service-section--reverse .service-section__grid > * {
    direction: ltr;
}

/* Service Content */
.service-section__content {
    max-width: 520px;
}

.service-section__label {
    margin-bottom: var(--space-sm);
}

.service-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.service-section__text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Service Features */
.service-section__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-stone);
}

.service-feature:last-child {
    border-bottom: none;
}

.service-feature__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.service-feature__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* Service Gallery */
.service-section__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-section__gallery-item {
    overflow: hidden;
}

.service-section__gallery-item:first-child {
    grid-column: span 2;
}

.service-section__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-section__gallery-item:first-child img {
    aspect-ratio: 16/10;
}

.service-section__gallery-item:not(:first-child) img {
    aspect-ratio: 1/1;
}

.service-section__gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   FULL WIDTH IMAGE SECTION
   ======================================== */

.full-image {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-image__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.full-image__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 24, 22, 0.5);
    z-index: -1;
}

.full-image__content {
    text-align: center;
    color: var(--text-inverse);
    max-width: 700px;
    padding: 0 var(--gutter);
}

.full-image__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.full-image__text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 992px) {
    .service-section__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .service-section--reverse .service-section__grid {
        direction: ltr;
    }

    .service-section__content {
        max-width: 100%;
    }
}

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

    .service-section__gallery-item:first-child {
        grid-column: span 1;
    }

    .full-image {
        height: 50vh;
        min-height: 350px;
    }
}
