/**
 * BOOKING SYSTEM - Core CSS
 * File: _core/booking.css
 *
 * Stili base condivisi tra tutte le istanze del sistema di prenotazioni.
 * CSS Variables permettono personalizzazione per istanza.
 */

/* =============================================================================
   CSS VARIABLES - Apple Style
   ============================================================================= */
:root {
    --bk-primary: #1d1d1f;
    --bk-primary-dark: #000000;
    --bk-accent: #0071e3;
    --bk-accent-hover: #0077ED;
    --bk-text: #1d1d1f;
    --bk-text-light: #86868b;
    --bk-bg: #ffffff;
    --bk-bg-alt: #f5f5f7;
    --bk-border: #d2d2d7;
    --bk-error: #ff3b30;
    --bk-success: #34c759;
    --bk-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    --bk-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --bk-radius: 12px;
    --bk-radius-sm: 8px;
    --bk-transition: all 0.15s ease;
    --bk-font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    --bk-z-trigger: 9998;
    --bk-z-overlay: 9999;
    --bk-z-modal: 10000;
}

/* =============================================================================
   BASE CONTAINER
   ============================================================================= */
.bk-container {
    font-family: var(--bk-font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--bk-text);
    box-sizing: border-box;
}

.bk-container *,
.bk-container *::before,
.bk-container *::after {
    box-sizing: inherit;
}

/* =============================================================================
   OVERLAY
   ============================================================================= */
.bk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--bk-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

.bk-overlay.bk-active {
    opacity: 1;
    visibility: visible;
}

/* =============================================================================
   MODAL CONTAINER
   ============================================================================= */
.bk-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: calc(100% - 24px);
    max-width: 570px;
    max-height: calc(100vh - 24px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    z-index: var(--bk-z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bk-modal.bk-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* =============================================================================
   MODAL HEADER
   ============================================================================= */
.bk-header {
    position: relative;
    padding: 20px 24px;
    background: #ffffff;
    color: var(--bk-text);
    text-align: center;
    border-bottom: 1px solid var(--bk-border);
}

.bk-close {
    position: absolute;
    top: 25px;
    right: 16px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bk-bg-alt);
    border: 1px solid var(--bk-border);
    border-radius: 50%;
    color: var(--bk-text-light);
    cursor: pointer;
    transition: var(--bk-transition);
}

.bk-close:hover {
    background: var(--bk-border);
    color: var(--bk-text);
}

.bk-close svg {
    width: 16px;
    height: 16px;
}

.bk-title {
    margin: 15px 0 4px;
    font-size: 20px;
    font-weight: 600;
    color: var(--bk-primary);
}

.bk-subtitle {
    margin: 0;
    font-size: 13px;
    color: var(--bk-text-light);
    font-weight: 400;
}

/* =============================================================================
   MODAL BODY
   ============================================================================= */
.bk-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f5f5f7;
}

/* =============================================================================
   FORM STRUCTURE
   ============================================================================= */
.bk-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bk-row {
    display: grid;
    gap: 10px;
}

.bk-row-2 { grid-template-columns: 1fr 1fr; }
.bk-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.bk-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.bk-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bk-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bk-text);
}

.bk-required {
    color: var(--bk-error);
}

/* =============================================================================
   FORM INPUTS - Apple Style
   ============================================================================= */
.bk-input,
.bk-select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    font-family: var(--bk-font);
    font-size: 15px;
    color: var(--bk-text);
    background: #fff;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius-sm);
    transition: var(--bk-transition);
    outline: none;
}

.bk-textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--bk-font);
    font-size: 15px;
    color: var(--bk-text);
    background: #fff;
    border: 1px solid var(--bk-border);
    border-radius: var(--bk-radius-sm);
    transition: var(--bk-transition);
    outline: none;
}

.bk-input:focus,
.bk-select:focus,
.bk-textarea:focus {
    border-color: var(--bk-accent);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.bk-input::placeholder,
.bk-textarea::placeholder {
    color: var(--bk-text-light);
}

.bk-input.bk-error,
.bk-select.bk-error,
.bk-textarea.bk-error {
    border-color: var(--bk-error);
}

.bk-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2386868b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.bk-textarea {
    height: auto;
    min-height: 80px;
    resize: vertical;
}

.bk-error-text {
    font-size: 12px;
    color: var(--bk-error);
    margin-top: 2px;
    display: none;
}

.bk-field.bk-has-error .bk-error-text {
    display: block;
}

/* =============================================================================
   CHILDREN AGES (Hotel) - Apple Style
   ============================================================================= */
.bk-children-ages {
    display: none;
    gap: 8px;
    padding: 10px;
    background: #fff;
    border-radius: var(--bk-radius-sm);
    margin-top: -4px;
}

.bk-children-ages.bk-visible {
    display: flex;
    flex-wrap: wrap;
}

.bk-child-age-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 80px;
    max-width: 100px;
}

.bk-child-age-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--bk-text-light);
}

.bk-child-age-select {
    height: 50px;
    padding: 0 24px 0 10px;
    font-size: 14px;
    font-family: var(--bk-font);
    background: #fff;
    border: 1px solid var(--bk-border);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--bk-transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2386868b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.bk-child-age-select:focus {
    border-color: var(--bk-accent);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
    outline: none;
}

/* =============================================================================
   SERVICES SECTION - Apple Style
   ============================================================================= */
.bk-services-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bk-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.bk-service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: var(--bk-radius-sm);
    border: 1px solid var(--bk-border);
    cursor: pointer;
    transition: var(--bk-transition);
}

.bk-service-item:hover {
    border-color: var(--bk-accent);
}

.bk-service-item.bk-checked {
    background: #e8f4ff;
    border-color: var(--bk-accent);
}

.bk-service-checkbox {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    /* margin-top: 1px; */
    accent-color: var(--bk-accent);
    cursor: pointer;
}

.bk-service-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.bk-service-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--bk-text);
    cursor: pointer;
}

.bk-service-price {
    font-size: 11px;
    color: var(--bk-text-light);
    font-weight: 500;
}

/* =============================================================================
   PRIVACY CHECKBOX - Apple Style
   ============================================================================= */
.bk-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: var(--bk-radius-sm);
    border: 1px solid var(--bk-border);
    transition: var(--bk-transition);
}

.bk-checkbox-wrapper.bk-error {
    border-color: var(--bk-error);
}

.bk-checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--bk-accent);
    cursor: pointer;
}

.bk-checkbox-label {
    font-size: 13px;
    color: var(--bk-text-light);
    line-height: 1.5;
}

.bk-checkbox-label a {
    color: var(--bk-accent);
    text-decoration: none;
    transition: var(--bk-transition);
}

.bk-checkbox-label a:hover {
    text-decoration: underline;
}

/* =============================================================================
   SUBMIT BUTTON - Apple Style
   ============================================================================= */
.bk-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 0px;
    font-family: var(--bk-font);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background: var(--bk-accent);
    border: none;
    border-radius: var(--bk-radius-sm);
    cursor: pointer;
    transition: var(--bk-transition);
	height: 50px;
}

.bk-submit:hover:not(:disabled) {
    background: var(--bk-accent-hover);
}

.bk-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bk-submit svg {
    width: 18px;
    height: 18px;
}

/* Spinner */
.bk-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: bk-spin 0.8s linear infinite;
    display: none;
}

.bk-submit.bk-loading .bk-spinner { display: block; }
.bk-submit.bk-loading .bk-submit-icon { display: none; }

@keyframes bk-spin {
    to { transform: rotate(360deg); }
}

/* =============================================================================
   LANGUAGE SELECTOR (in header, top left)
   ============================================================================= */
.bk-language-selector {
    position: absolute;
    top: 25px;
    left: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bk-language-label {
    display: flex;
    align-items: center;
    color: var(--bk-text-light);
}

.bk-language-label svg {
    width: 16px;
    height: 16px;
}

.bk-language-select {
    padding: 5px 24px 5px 8px;
    font-family: var(--bk-font);
    font-size: 12px;
    font-weight: 500;
    color: var(--bk-text);
    background: var(--bk-bg-alt);
    border: 1px solid var(--bk-border);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--bk-transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%236c7a89' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 6px center;
}

.bk-language-select:hover {
    border-color: var(--bk-accent);
}

.bk-language-select:focus {
    outline: none;
    border-color: var(--bk-accent);
}

/* =============================================================================
   MESSAGES
   ============================================================================= */
.bk-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    margin-top: 16px;
    border-radius: var(--bk-radius-sm);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.bk-message svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.bk-message.bk-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--bk-success);
    border: 1px solid var(--bk-success);
}

.bk-message.bk-error-msg {
    background: rgba(231, 76, 60, 0.1);
    color: var(--bk-error);
    border: 1px solid var(--bk-error);
}

.bk-message.bk-visible {
    display: flex;
}

/* =============================================================================
   HONEYPOT (hidden)
   ============================================================================= */
.bk-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =============================================================================
   STATIC FORM (in-page)
   ============================================================================= */
.bk-static {
    background: var(--bk-bg);
    border-radius: var(--bk-radius);
    box-shadow: var(--bk-shadow-sm);
    overflow: hidden;
}

.bk-static .bk-header {
    padding: 20px 24px 16px;
}

.bk-static .bk-title {
    font-size: 20px;
}

.bk-static .bk-body {
    padding: 20px 24px 24px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 600px) {
    .bk-modal {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: translateY(100%);
    }

    .bk-modal.bk-active {
        transform: translateY(0);
    }

    .bk-header {
        padding: 16px;
    }

    .bk-body {
        padding: 12px;
    }

    .bk-title {
        font-size: 17px;
    }

    .bk-row-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bk-row-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .bk-services-grid {
        grid-template-columns: 1fr;
    }

    .bk-child-age-item {
        min-width: 80px;
    }
}

/* =============================================================================
   PRINT: Hide All Booking Elements
   ============================================================================= */
@media print {
    .bk-container,
    .bk-overlay,
    .bk-modal,
    .bk-trigger {
        display: none !important;
    }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
    .bk-container *,
    .bk-overlay,
    .bk-modal {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/**
 * BOOKING SYSTEM - Floating Trigger CSS
 * File: _triggers/floating/floating.css
 */

/* =============================================================================
   FLOATING BUTTON
   ============================================================================= */
.bk-trigger-floating {
    position: fixed;
    z-index: var(--bk-z-trigger, 9998);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--bk-primary, #1a3a4a) 0%, var(--bk-primary-dark, #0d2530) 100%);
    color: #ffffff;
    font-family: var(--bk-font, 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    white-space: nowrap;
    animation: bk-pulse 2s ease-in-out infinite;
}

.bk-trigger-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
}

.bk-trigger-floating:active {
    transform: translateY(0);
}

.bk-trigger-floating svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bk-trigger-floating img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* =============================================================================
   POSITIONS - CORNERS
   ============================================================================= */
.bk-trigger-floating.bk-pos-bottom-right {
    bottom: 24px;
    right: 24px;
}

.bk-trigger-floating.bk-pos-bottom-left {
    bottom: 24px;
    left: 24px;
}

.bk-trigger-floating.bk-pos-top-right {
    top: 24px;
    right: 24px;
}

.bk-trigger-floating.bk-pos-top-left {
    top: 24px;
    left: 24px;
}

/* =============================================================================
   POSITIONS - CENTER (horizontal)
   ============================================================================= */
.bk-trigger-floating.bk-pos-bottom-center {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.bk-trigger-floating.bk-pos-bottom-center:hover {
    transform: translateX(-50%) translateY(-2px);
}

.bk-trigger-floating.bk-pos-top-center {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.bk-trigger-floating.bk-pos-top-center:hover {
    transform: translateX(-50%) translateY(-2px);
}

/* =============================================================================
   POSITIONS - MID (vertical center)
   ============================================================================= */
.bk-trigger-floating.bk-pos-mid-left {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
}

.bk-trigger-floating.bk-pos-mid-left:hover {
    transform: translateY(-50%) translateX(2px);
}

.bk-trigger-floating.bk-pos-mid-right {
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

.bk-trigger-floating.bk-pos-mid-right:hover {
    transform: translateY(-50%) translateX(-2px);
}

/* Vertical layout for mid positions */
.bk-trigger-floating.bk-pos-mid-left,
.bk-trigger-floating.bk-pos-mid-right {
    writing-mode: vertical-lr;
    padding: 28px 16px;
}

.bk-trigger-floating.bk-pos-mid-left {
    transform: translateY(-50%) rotate(180deg);
}

.bk-trigger-floating.bk-pos-mid-left:hover {
    transform: translateY(-50%) rotate(180deg) translateY(2px);
}

/* =============================================================================
   PULSE ANIMATION
   ============================================================================= */
@keyframes bk-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 10px 40px rgba(201, 160, 80, 0.3);
    }
}

/* =============================================================================
   COMPACT MODE (icon only)
   ============================================================================= */
.bk-trigger-floating.bk-compact {
    padding: 16px;
    border-radius: 50%;
}

.bk-trigger-floating.bk-compact span {
    display: none;
}

/* Mid positions compact */
.bk-trigger-floating.bk-compact.bk-pos-mid-left,
.bk-trigger-floating.bk-compact.bk-pos-mid-right {
    writing-mode: horizontal-tb;
    padding: 16px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 768px) {

    .bk-trigger-floating.bk-pos-bottom-right:hover,
    .bk-trigger-floating.bk-pos-bottom-left:hover,
    .bk-trigger-floating.bk-pos-bottom-center:hover {
        transform: translateY(-2px) !important;
    }

    /* Top positions stay compact */
    .bk-trigger-floating.bk-pos-top-right,
    .bk-trigger-floating.bk-pos-top-left,
    .bk-trigger-floating.bk-pos-top-center {
        top: 16px;
    }

    .bk-trigger-floating.bk-pos-top-center {
        left: 50%;
        right: auto;
        width: auto;
    }

    /* Mid positions hide text on mobile */
    .bk-trigger-floating.bk-pos-mid-left,
    .bk-trigger-floating.bk-pos-mid-right {
        writing-mode: horizontal-tb;
        padding: 16px;
    }

    .bk-trigger-floating.bk-pos-mid-left span,
    .bk-trigger-floating.bk-pos-mid-right span {
        display: none;
    }

    /* Compact stays compact */
    .bk-trigger-floating.bk-compact {
        width: auto;
        left: auto !important;
        right: 16px !important;
    }
}
@media (max-width: 480px) {
    /* Bottom positions go full width on mobile */
    .bk-trigger-floating.bk-pos-bottom-right,
    .bk-trigger-floating.bk-pos-bottom-left,
    .bk-trigger-floating.bk-pos-bottom-center {
        bottom: 16px !important;
        right: 16px !important;
        left: 16px !important;
        top: auto !important;
        width: calc(100% - 32px);
        justify-content: center;
        transform: none !important;
    }
}
/* =============================================================================
   PRINT: HIDE
   ============================================================================= */
@media print {
    .bk-trigger-floating {
        display: none !important;
    }
}

/**
 * BOOKING SYSTEM - Inline Trigger CSS
 * File: _triggers/inline/inline.css
 */

/* =============================================================================
   INLINE BUTTON
   ============================================================================= */
.bk-trigger-inline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--bk-primary, #1a3a4a) 0%, var(--bk-primary-dark, #0d2530) 100%);
    color: #ffffff;
    font-family: var(--bk-font, 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    white-space: nowrap;
}

.bk-trigger-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bk-trigger-inline:active {
    transform: translateY(0);
}

.bk-trigger-inline svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bk-trigger-inline img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

/* =============================================================================
   VARIANTS
   ============================================================================= */

/* Outline variant */
.bk-trigger-inline.bk-outline {
    background: transparent;
    color: var(--bk-primary, #1a3a4a);
    border: 2px solid var(--bk-primary, #1a3a4a);
    box-shadow: none;
}

.bk-trigger-inline.bk-outline:hover {
    background: var(--bk-primary, #1a3a4a);
    color: #ffffff;
}

/* Accent variant */
.bk-trigger-inline.bk-accent {
    background: var(--bk-accent, #c9a050);
    color: var(--bk-primary, #1a3a4a);
}

.bk-trigger-inline.bk-accent:hover {
    background: var(--bk-accent-hover, #b8903f);
}

/* Light variant */
.bk-trigger-inline.bk-light {
    background: #ffffff;
    color: var(--bk-primary, #1a3a4a);
}

.bk-trigger-inline.bk-light:hover {
    background: var(--bk-bg-alt, #f8f9fa);
}

/* =============================================================================
   SIZES
   ============================================================================= */

/* Small */
.bk-trigger-inline.bk-small {
    padding: 10px 20px;
    font-size: 13px;
}

.bk-trigger-inline.bk-small svg,
.bk-trigger-inline.bk-small img {
    width: 16px;
    height: 16px;
}

/* Large */
.bk-trigger-inline.bk-large {
    padding: 20px 36px;
    font-size: 17px;
}

.bk-trigger-inline.bk-large svg,
.bk-trigger-inline.bk-large img {
    width: 24px;
    height: 24px;
}

/* =============================================================================
   FULL WIDTH
   ============================================================================= */
.bk-trigger-inline.bk-full {
    width: 100%;
    justify-content: center;
}

/* =============================================================================
   ICON ONLY
   ============================================================================= */
.bk-trigger-inline.bk-icon-only {
    padding: 14px;
    border-radius: 50%;
}

.bk-trigger-inline.bk-icon-only span {
    display: none;
}

/* =============================================================================
   PRINT: HIDE
   ============================================================================= */
@media print {
    .bk-trigger-inline {
        display: none !important;
    }
}

/**
 * BOOKING SYSTEM - Static Form CSS
 * File: _triggers/static/static.css
 *
 * Stili per il form statico in-page (non modal).
 * Il form e' sempre visibile nella pagina.
 */

/* =============================================================================
   STATIC CONTAINER
   ============================================================================= */
.bk-static {
    background: var(--bk-bg, #ffffff);
    border-radius: var(--bk-radius, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* =============================================================================
   HEADER ADJUSTMENTS
   ============================================================================= */
.bk-static .bk-header {
    padding: 20px 24px 16px;
}

.bk-static .bk-title {
    font-size: 20px;
}

.bk-static .bk-subtitle {
    font-size: 13px;
}

/* No close button in static mode */
.bk-static .bk-close {
    display: none;
}

/* =============================================================================
   BODY ADJUSTMENTS
   ============================================================================= */
.bk-static .bk-body {
    padding: 20px 24px 24px;
}

/* =============================================================================
   VARIANTS
   ============================================================================= */

/* Compact: no header */
.bk-static.bk-compact .bk-header {
    display: none;
}

.bk-static.bk-compact .bk-body {
    padding: 24px;
}

/* Flat: no shadow */
.bk-static.bk-flat {
    box-shadow: none;
    border: 1px solid var(--bk-border, #e1e5e9);
}

/* Transparent: no background */
.bk-static.bk-transparent {
    background: transparent;
    box-shadow: none;
}

.bk-static.bk-transparent .bk-header {
    border-radius: var(--bk-radius, 12px) var(--bk-radius, 12px) 0 0;
}

/* =============================================================================
   HORIZONTAL LAYOUT (for wide sections)
   ============================================================================= */
.bk-static.bk-horizontal .bk-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: end;
}

.bk-static.bk-horizontal .bk-row {
    display: contents;
}

.bk-static.bk-horizontal .bk-submit {
    margin-top: 0;
    height: 100%;
    min-height: 52px;
}

/* =============================================================================
   SIZES
   ============================================================================= */

/* Small */
.bk-static.bk-small .bk-header {
    padding: 16px 20px 12px;
}

.bk-static.bk-small .bk-title {
    font-size: 18px;
}

.bk-static.bk-small .bk-body {
    padding: 16px 20px 20px;
}

.bk-static.bk-small .bk-input,
.bk-static.bk-small .bk-select,
.bk-static.bk-small .bk-textarea {
    padding: 10px 12px;
    font-size: 14px;
}

.bk-static.bk-small .bk-submit {
    padding: 14px 24px;
    font-size: 14px;
}

/* Large */
.bk-static.bk-large .bk-header {
    padding: 28px 32px 22px;
}

.bk-static.bk-large .bk-title {
    font-size: 26px;
}

.bk-static.bk-large .bk-body {
    padding: 28px 32px 32px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 600px) {
    .bk-static .bk-header {
        padding: 16px 16px 14px;
    }

    .bk-static .bk-body {
        padding: 16px;
    }

    .bk-static.bk-horizontal .bk-form {
        grid-template-columns: 1fr;
    }
}

/**
 * BOOKING SYSTEM - Hotel Form 003 CSS (Classic Blue/Gold Style)
 * File: _forms/hotel/003/form.css
 *
 * Stile elegante classico con palette blu scuro e oro
 * Primary: #1a3a4a (blu scuro)
 * Accent: #c9a050 (oro)
 */

/* =============================================================================
   CLASSIC STYLE VARIABLES (solo 2 colori)
   ============================================================================= */
.bk-form-classic {
    --bk-primary: #1a3a4a;
    --bk-accent: #c9a050;
}

/* =============================================================================
   WIZARD FORM BASE
   ============================================================================= */
.bk-form-classic.bk-form-wizard {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =============================================================================
   QUOTE CARDS (Preventivi)
   ============================================================================= */
.bk-form-classic .bk-quotes-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 4px;
}

.bk-form-classic .bk-quote-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(26, 58, 74, 0.15);
    overflow: hidden;
}

.bk-form-classic .bk-quote-card.bk-new {
    animation: bk-classic-fade-in 0.25s ease;
}

@keyframes bk-classic-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.bk-form-classic .bk-quote-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(26, 58, 74, 0.06);
}

.bk-form-classic .bk-quote-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--bk-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bk-form-classic .bk-quote-remove {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(26, 58, 74, 0.2);
    border-radius: 50%;
    color: var(--bk-primary);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-quote-remove:hover {
    opacity: 1;
    background: #fff;
}

.bk-form-classic .bk-quote-remove svg {
    width: 11px;
    height: 11px;
}

.bk-form-classic .bk-quote-body {
    padding: 14px;
}

.bk-form-classic .bk-quote-dates {
    margin-bottom: 12px;
}

/* =============================================================================
   LABELS - UPPERCASE STYLE
   ============================================================================= */
.bk-form-classic .bk-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--bk-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

/* =============================================================================
   INPUTS & SELECTS
   ============================================================================= */
.bk-form-classic .bk-input,
.bk-form-classic .bk-select {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--bk-primary);
    background: #fff;
    border: 1px solid rgba(26, 58, 74, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
}

.bk-form-classic .bk-input:focus,
.bk-form-classic .bk-select:focus {
    border-color: var(--bk-accent);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.15);
}

.bk-form-classic .bk-input::placeholder {
    color: rgba(26, 58, 74, 0.4);
}

.bk-form-classic .bk-textarea {
    height: auto;
    min-height: 90px;
    padding: 12px;
    resize: vertical;
}

/* =============================================================================
   ROOM CARDS
   ============================================================================= */
.bk-form-classic .bk-rooms-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-form-classic .bk-room-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(26, 58, 74, 0.15);
    overflow: hidden;
}

.bk-form-classic .bk-room-card.bk-new {
    animation: bk-classic-fade-in 0.25s ease;
}

.bk-form-classic .bk-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(26, 58, 74, 0.06);
}

.bk-form-classic .bk-room-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--bk-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bk-form-classic .bk-room-remove {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(26, 58, 74, 0.2);
    border-radius: 50%;
    color: var(--bk-primary);
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-room-remove:hover {
    opacity: 1;
    background: #fff;
}

.bk-form-classic .bk-room-remove svg {
    width: 10px;
    height: 10px;
}

.bk-form-classic .bk-room-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =============================================================================
   COMPACT FIELDS
   ============================================================================= */
.bk-form-classic .bk-field-compact {
    gap: 4px;
}

.bk-form-classic .bk-field-compact .bk-label {
    font-size: 10px;
    margin-bottom: 4px;
}

/* =============================================================================
   ROOM SERVICES (Pills style)
   ============================================================================= */
.bk-form-classic .bk-room-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bk-form-classic .bk-field-services .bk-label {
    margin-bottom: 8px;
}

.bk-form-classic .bk-service-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid rgba(26, 58, 74, 0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-service-inline:hover {
    border-color: var(--bk-accent);
}

.bk-form-classic .bk-service-inline.bk-checked,
.bk-form-classic .bk-service-inline:has(input:checked) {
    background: rgba(201, 160, 80, 0.1);
    border-color: var(--bk-accent);
}

.bk-form-classic .bk-service-inline .bk-service-checkbox {
    width: 15px;
    height: 15px;
    accent-color: var(--bk-accent);
    cursor: pointer;
}

.bk-form-classic .bk-service-inline .bk-service-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--bk-primary);
}

.bk-form-classic .bk-service-inline .bk-service-price {
    font-size: 11px;
    color: var(--bk-accent);
    font-weight: 500;
}

/* =============================================================================
   CHILDREN AGES
   ============================================================================= */
.bk-form-classic .bk-room-card .bk-children-ages {
    margin-top: -2px;
    padding: 10px;
    background: rgba(26, 58, 74, 0.04);
    border-radius: 6px;
}

.bk-form-classic .bk-room-card .bk-children-ages:empty {
    display: none;
}

.bk-form-classic .bk-room-card .bk-children-ages.bk-visible {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* =============================================================================
   ADD BUTTONS
   ============================================================================= */
.bk-form-classic .bk-add-room-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    margin-top: 10px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: var(--bk-primary);
    background: #fff;
    border: 1px solid rgba(26, 58, 74, 0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-add-room-btn:hover {
    background: rgba(26, 58, 74, 0.04);
    border-color: var(--bk-primary);
}

.bk-form-classic .bk-add-room-btn svg {
    width: 13px;
    height: 13px;
}

.bk-form-classic .bk-add-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: var(--bk-accent);
    background: transparent;
    border: 2px dashed var(--bk-accent);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-add-quote-btn:hover {
    background: rgba(201, 160, 80, 0.08);
}

.bk-form-classic .bk-add-quote-btn:disabled,
.bk-form-classic .bk-add-room-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.bk-form-classic .bk-add-quote-btn svg {
    width: 14px;
    height: 14px;
}

/* =============================================================================
   STEPS (Contact section - I TUOI DATI)
   ============================================================================= */
.bk-form-classic .bk-step {
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(26, 58, 74, 0.15);
    overflow: hidden;
    margin-bottom: 12px;
}

.bk-form-classic .bk-step-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bk-primary);
}

.bk-form-classic .bk-step-icon {
    display: none;
}

.bk-form-classic .bk-step-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bk-form-classic .bk-step-content {
    padding: 14px;
}

/* =============================================================================
   SEPARATOR
   ============================================================================= */
.bk-form-classic .bk-separator {
    height: 1px;
    background: rgba(26, 58, 74, 0.1);
    margin: 12px 0;
}

/* =============================================================================
   CHECKBOX / PRIVACY
   ============================================================================= */
.bk-form-classic .bk-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bk-form-classic .bk-checkbox {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--bk-accent);
    cursor: pointer;
}

.bk-form-classic .bk-checkbox-label {
    font-size: 12px;
    color: var(--bk-primary);
    line-height: 1.5;
}

.bk-form-classic .bk-checkbox-label a {
    color: var(--bk-accent);
    text-decoration: underline;
}

.bk-form-classic .bk-checkbox-label a:hover {
    color: var(--bk-primary);
}

/* =============================================================================
   SUBMIT BUTTON
   ============================================================================= */
.bk-form-classic .bk-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--bk-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bk-form-classic .bk-submit:hover {
    background: #d4b977;
}

.bk-form-classic .bk-submit:active {
    transform: scale(0.98);
}

.bk-form-classic .bk-submit-icon {
    width: 16px;
    height: 16px;
}

/* =============================================================================
   REQUIRED INDICATOR
   ============================================================================= */
.bk-form-classic .bk-required {
    color: var(--bk-accent);
    font-weight: 700;
}

/* =============================================================================
   ERROR STATE
   ============================================================================= */
.bk-form-classic .bk-error .bk-input,
.bk-form-classic .bk-error .bk-select {
    border-color: #dc3545;
}

.bk-form-classic .bk-error-text {
    display: none;
    font-size: 10px;
    color: #dc3545;
    margin-top: 4px;
    font-weight: 500;
}

.bk-form-classic .bk-error .bk-error-text {
    display: block;
}

/* =============================================================================
   MESSAGES
   ============================================================================= */
.bk-form-classic .bk-message {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.bk-form-classic .bk-message svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bk-form-classic .bk-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.bk-form-classic .bk-error-msg {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.bk-step-content .bk-field {
    padding: 12px 0 0 0;
    gap: 0;
}

.bk-step-content .bk-field:first-child {
    padding-top: 0;
}
.bk-step-content .bk-row .bk-field:first-child {
    padding-top: 12px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 600px) {
    .bk-form-classic .bk-quote-body,
    .bk-form-classic .bk-step-content {
        padding: 12px;
    }

    .bk-form-classic .bk-room-body {
        padding: 10px;
    }

    .bk-form-classic .bk-room-services-grid {
        flex-direction: column;
    }

    .bk-form-classic .bk-service-inline {
        width: 100%;
    }

    .bk-form-classic .bk-room-card .bk-children-ages .bk-child-age-item {
        min-width: 100%;
    }

    .bk-form-classic .bk-submit {
        padding: 12px 16px;
    }
}

/*--- panel menu ---*/
/*--- 
variabili pannello menu 
	colore sfondo pannello
	--bg-panel-menu:#fff;

	colore bordo a sinistra sub menu
	--border-left-sub-menu:#ddd;

	colore bordo in basso ai links
	--border-bottom-items:#ddd;

	colore link
	--link:#111;

	colore link hover
	--link-over:#777;

---*/
:root {
	--bg-panel-menu:#fff;
	--border-left-sub-menu:#ddd;
	--border-bottom-items:#ddd;
	--link:#111;
	--link-over:#777;
}

.panel-menu-001-panel-menu {
	position:fixed;
	top:0;
	bottom:0;
	width:100%;
	max-width: 420px;
	height:100%;
	z-index:9999999999999999999999999;
	margin:0;
	padding:0 0 0 0;
	background-color:var(--bg-panel-menu);
	overflow:hidden;
	display: none;
}

.panel-menu-001-panel-menu.panel-left {
	left:-100%;
	right:auto;
}

.panel-menu-001-panel-menu.panel-right {
	right:-100%;
	left:auto;
}

.panel-menu-001-panel-menu .header {
	position: relative;
	margin: 0;
	padding: 0;
	width:100%;
	height:90px;
}

.panel-menu-001-panel-menu .header a.close {
	position: absolute;
	top: 21px;
	right: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0 0 0 0;
	z-index: 888;
}

.panel-menu-001-panel-menu .header .title {
	position: relative;
	margin: 0;
	padding: 0;
	width: 240px;
	display: flex;
	align-items: center;
}

.panel-menu-001-panel-menu .header .title a img {
	width: auto;
	height: 90px;
}

.panel-menu-001-panel-menu .container {
	position: relative;
	margin: 0 0 0 0;
	padding: 20px 0 10px 0;
	width: 100%;
	height:calc(100% - 130px);
	overflow-y:auto;
	-webkit-overflow-scrolling: touch;
}

.panel-menu-001-panel-menu .panel-shadow {
	position: absolute;
	top: 90px;
	left: 0;
	bottom: auto;
	right: auto;
	width: 100%;
	height: 50px;
	z-index: 1;
/*
	background-repeat:repeat-x;
	background-position:left top;
	background-size:50px 50px;
	background-image: url(/assets/img/menu/panel-menu-shadow.png);
*/
	background: linear-gradient(to top,rgba(255,255,255,0.2) 0%,rgba(255,255,255,1)100%);
}

.panel-menu-001-panel-menu .content {
	position: relative;
	margin:0;
	padding:0 0 0 0;
	font-family: 'Lato', sans-serif;
}

.panel-menu-001-panel-menu .content .section {
	position:relative;
	margin:0;
	padding:0 0 0 0;
	display: table;
	width: 100%;
	clear: both;
	border-bottom: 1px solid var(--border-bottom-items);
}

.panel-menu-001-panel-menu .content .section.no-border:last-child,
.panel-menu-001-panel-menu .content .section.no-border {
	border-bottom: none;
}

.panel-menu-001-panel-menu .section .title {
	position: relative;
	margin: 0 0 0 0;
	padding: 0;
	font-size: 25px;
	font-weight: 300;
	color: var(--link);
	text-align: left;
	width: 100%;
	height: 51px;
	border-left: 10px solid transparent;
	display: flex;
	align-items: center;
}

.panel-menu-001-panel-menu .section .title.active {
	border-left: 10px solid var(--border-left-sub-menu);
	background-color: #f8f8f8;
}

.panel-menu-001-panel-menu .section.submenu .title.active {
	border-bottom: 1px solid var(--border-bottom-items);
}

.panel-menu-001-panel-menu .content ul li.active,
.panel-menu-001-panel-menu .content ul li.active a.active {
	background-color: #f8f8f8;
}

.panel-menu-001-panel-menu .section .title a {
	display: inline;
	align-items: center;
	float: left;
	width: calc(100% - 22px);
	padding: 0 0 0 25px;
	line-height: 20px;
}

.panel-menu-001-panel-menu .section .title a.with-icon {
/*
	display: flex;
*/
	display: inline;
	line-height: 25px;
}

.panel-menu-001-panel-menu .section .submenu a.with-icon {
	display: flex !important;
	align-items:center;
}

.panel-menu-001-panel-menu .with-icon img {
	float:left;
	margin-right:15px;
	width: 25px;
	height: 25px;
}

.panel-menu-001-panel-menu .section li .title {
	padding: 0 0 0 0;
}

.panel-menu-001-panel-menu .section img.submenu-open {
	position: relative;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	float: right;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
}

.panel-menu-001-panel-menu .page-link {

}

.panel-menu-001-panel-menu .page-link.with-icon {
	font-size:20px;
}

.panel-menu-001-panel-menu .page-link.with-icon img {
	float:left;
	margin-right:15px;
	width: 25px;
	height: 25px;
}

.panel-menu-001-panel-menu .content ul {
	position: relative;
	margin:0;
	padding:0 0 0 0px;
	width:100%;
	clear: both;
	display: none;
	border-left: 10px solid var(--border-left-sub-menu);
}

.panel-menu-001-panel-menu .content ul li ul {
	position: relative;
	margin:0;
	padding:0 0 10px 0;
	width:100%;
	clear: both;
	display: none;
}

.panel-menu-001-panel-menu .content ul li {
	position: relative;
	list-style-type: disc;
	list-style-position: inside;
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 0 0 40px;
	clear: both;
	border-bottom: 1px solid var(--border-bottom-items);
	line-height: 50px;
}

.panel-menu-001-panel-menu .content ul li:last-child {
	border-bottom:none;
}

.panel-menu-001-panel-menu .content ul li a {
	position: relative;
	margin: 0 0 0 0;
	padding: 0 60px 0 0px;
	display: inline-block;
	width: 90%;
	font-size: 20px;
	font-weight: 300;
	color: var(--link);
	text-align: left;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.panel-menu-001-panel-menu .content ul li a span {
	font-weight: 700;
	margin-left: 6px;
}

.panel-menu-001-panel-menu .section .title a:hover,
.panel-menu-001-panel-menu a.single:hover,
.panel-menu-001-panel-menu .content ul li a:hover {
	color: var(--link-over);
}

.panel-menu-001-panel-menu .content ul li a.evidence {
	font-weight: 400;
}

.panel-menu-001-panel-menu .content ul li a.submenu-open {
	border:none;
}

.panel-menu-001-panel-menu .content .single-image {
	position: relative;
	margin: 25px 10px 10px 10px;
	padding: 0 0 0 0;
	clear: both;
	display: flex;
	justify-content: center;
}

.panel-menu-001-panel-menu .content .single-image a {
}

.panel-menu-001-panel-menu .content .single-image a img.round {
	border-radius: 10px;
}

.panel-menu-001-panel-menu .footer {
	position: absolute;
	bottom:0;
	top: auto;
	left: 0;
	right: auto;
	margin: 0;
	padding: 0;
	width:100%;
	max-width: 420px;
	height:50px;
	clear: both;
	border-top: 1px solid var(--border-bottom-items);
	background-color: #fff;
}

.panel-menu-001-panel-menu .footer a {
	position:relative;
	margin:0;
	padding:0;
	width:100%;
	height:50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size:14px;
	font-weight: 400;
	color: var(--link);
	text-transform: uppercase;
	font-family: Gotham Medium;
}

.panel-menu-001-panel-menu .footer a:hover {
	color: var(--link);
}

.panel-menu-001-panel-menu .footer a span {
	font-family: Gotham Black;
	padding-left: 5px;
}

.panel-menu-001-panel-menu .for-shop {
	position:absolute;
	right:60px;
	top:21px;
	width:80px;
}

@media only screen and (max-width: 590px) {

	.panel-menu-001-panel-menu .header-menu .title {
		padding: 0 0 0 0;
	}

}

@media only screen and (max-width: 480px) {

	.panel-menu-001-panel-menu .section .title {
		line-height: 20px;
	}

	.panel-menu-001-panel-menu .section .title a.page-link {
/*
		line-height: 46px;
*/		
	}

	.panel-menu-001-panel-menu .page-link {
		line-height: 46px;
	}

	.panel-menu-001-panel-menu-content ul li a {
		padding: 0 60px 0 28px;
		background-position: 18px center;
	}

	.panel-menu-001-panel-menu-content ul li ul li a {
		padding: 0 40px 0 40px;
		background-position: 30px center;
	}

	.panel-menu-001-panel-menu ul li a.page-link {
/*
		display: contents;
*/
	}

	.panel-menu-001-panel-menu a.single {
		padding: 0 0 0 30px;
	}

}

@media only screen and (max-width: 320px) {

	.panel-menu-001-panel-menu .section .title {
		font-size: 20px;
	}

	.panel-menu-001-panel-menu .content ul li a {
		padding: 0 20px 0 0px;
		font-size: 18px;
	}

	.panel-menu-001-panel-menu .for-shop {
		top:15px;
	}

	.panel-menu-001-panel-menu .header a.close {
		top: 15px;
	}

}

/*--- ! ---*/

	:root {
		--colore-0: transparent;
		--colore-1: #05668d;
		--colore-2: #427aa1;
		--colore-3: #ebf2fa;
		--colore-4: #679436;
		--colore-5: #a5be00;
		
		--colore-h: #1f1f1f;
		--colore-p: #393939;
		
		--nuovo-font: 'nuovofont', sans-serif;
	}
	
	.colore-0 { color: var(--colore-0) }
	.colore-1 { color: var(--colore-1) }
	.colore-2 { color: var(--colore-2) }
	.colore-3 { color: var(--colore-3) }
	.colore-4 { color: var(--colore-4) }
	.colore-5 { color: var(--colore-5) }
	
	.bg-colore-0 { background-color: var(--colore-0) }
	.bg-colore-1 { background-color: var(--colore-1) }
	.bg-colore-2 { background-color: var(--colore-2) }
	.bg-colore-3 { background-color: var(--colore-3) }
	.bg-colore-4 { background-color: var(--colore-4) }
	.bg-colore-5 { background-color: var(--colore-5) }

    ul li, ol li {
     font-size: inherit; 
     line-height: inherit;
     font-weight: inherit;
     margin: inherit; 
     padding: inherit; 
     position: inherit; 
     text-align: inherit;
    }
    ul, ol {
    padding: inherit;
    margin: inherit;
    display: inherit;
    position: inherit;
    color: inherit;
    font-family: inherit;
}
	.blueimp-gallery > .prev, 
	.blueimp-gallery > .next {
    	width: auto;
    	height: auto;
    	background: transparent;
    	border: none;
    	opacity: 0.9;
    	box-shadow: inset 0 0 25px 0 rgba(0,0,0,0.5);
	}
	.blueimp-gallery > .close {
		width: 50px;
    	height: 50px;
    	border-radius: 50%;
    	overflow: hidden;
    	margin: 0;
    	opacity: 0.9;
    	padding: 0;
	}
	
	/*--- personalizzazoione pulsante intro ---*/
	.intro-001-intro-block a {
    	position: relative;
    	display: inline-block;
    	padding: 8px 50px 10px 50px;
    	text-align: center;
    	border-style: solid;
    	border-width: 2px;
    	border-color: rgba(255,255,255,0.40);
    	color: #fff;
    	font-family: 'Lato', sans-serif;
    	font-size: 20px;
    	letter-spacing: -1px;
    	background-color: transparent;
    	border-radius: 100px;
	}
	
	.intro-001-intro-block a:hover {
    	background-color: #fff;
    	color: #333;
	}
	
	.intro-001-intro-block a.eventi {
    	position: relative;
    	display: inline-block;
    	padding: 8px 50px 10px 50px;
    	text-align: center;
    	border-style: solid;
    	border-width: 2px;
    	border-color: rgba(255,255,255,0.40);
    	color: #753b3e;
    	font-family: 'Lato', sans-serif;
    	font-size: 20px;
    	letter-spacing: -1px;
    	background-color: rgba(255,255,255,1);
    	border-radius: 100px;
	}
	
	.intro-001-intro-block a.eventi:hover {
    	background-color: transparent;
    	color: #fff;
	}

/* text align */

@media only screen and (max-width: 480px) {
    .text-left-smartphone {
		text-align: left;
    }
    .text-center-smartphone {
		text-align: center;
    }
    .text-right-smartphone {
		text-align: right;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .text-left-tablet {
		text-align: left;
    }
    .text-center-tablet {
		text-align: center;
    }
    .text-right-tablet {
		text-align: right;
    }
}

@media only screen and (max-width: 768px) {
    .text-left-mobile {
		text-align: left;
    }
    .text-center-mobile {
		text-align: center;
    }
    .text-right-mobile {
		text-align: right;
    }
}

@media only screen and (min-width: 769px) {
    .text-left-desktop {
		text-align: left;
    }
    .text-center-desktop {
		text-align: center;
    }
    .text-right-desktop {
		text-align: right;
    }
}

/*--- personalizzabile tramite override end ---*/

@media only screen and (min-width: 769px) { /* Desktop */
    .classe {
        padding: 0px 0px 0px 0px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) { /* Tablet */
    .classe {
        padding: 0px 0px 0px 0px;
    }
}

@media only screen and (max-width: 768px) { /* Smartphone + Tablet */
    .classe {
        padding: 0px 0px 0px 0px;
    }
}

@media only screen and (max-width: 480px) { /* Smartphone */
    .classe {
        padding: 0px 0px 0px 0px;
    }
}

/*--- typography ---*/

	h1.nuovofont, 
	h2.nuovofont, 
	h3.nuovofont, 
	h4.nuovofont, 
	h5.nuovofont, 
	h6.nuovofont,
	.titolo-h1,
	.titolo-h2,
	.titolo-h3,
	.titolo-h4,
	.titolo-h5,
	.titolo-h6,
	.titolo-xl,
	.titolo-xxl,
	.titolo-xxxl { 
		font-family: var(--nuovo-font);
		color: var(--colore-h);
	}

	h1.nuovofont,
	.titolo-h1 {
		font-size: clamp(2.813rem, 2.5738rem + 0.7940vw, 4.063rem) /* 45px 65px | 481px 3000px */;
		line-height: clamp(2.813rem, 2.5738rem + 0.7940vw, 4.063rem) /* 45px 65px | 100% | 481px 3000px */;
		font-weight: 900;
		letter-spacing: -3px;
		margin: 20px 0 30px 0;
	}
	
	h2.nuovofont,
	.titolo-h2 {
		font-size: clamp(2.500rem, 2.3210rem + 0.5955vw, 3.438rem) /* 40px 55px | 481px 3000px */;
		line-height: clamp(2.500rem, 2.3210rem + 0.5955vw, 3.438rem) /* 40px 55px | 100% | 481px 3000px */;
		font-weight: 800;
		letter-spacing: -2px;
		margin: 20px 0 25px 0;
	}
	
	h3.nuovofont,
	.titolo-h3 {
		font-size: clamp(2.188rem, 1.9188rem + 0.8937vw, 2.813rem) /* 35px 45px | 481px 1600px */;
		line-height: clamp(2.188rem, 1.9188rem + 0.8937vw, 2.813rem) /* 35px 45px | 100% | 481px 1600px */;
		font-weight: 700;
		letter-spacing: -1px;
		margin: 20px 0 20px 0;
	}
	
	h4.nuovofont,
	.titolo-h4 {
		font-size: clamp(2.000rem, 1.8388rem + 0.5362vw, 2.375rem) /* 32px 38px | 481px 1600px */;
		line-height: clamp(2.100rem, 1.9307rem + 0.5630vw, 2.494rem) /* 32px 38px | 105% | 481px 1600px */;
		font-weight: 600;
		letter-spacing: -1px;
		margin: 20px 0 10px 0;
	}
	
	h5.nuovofont,
	.titolo-h5 {
		font-size: clamp(1.750rem, 1.6425rem + 0.3575vw, 2.000rem) /* 28px 32px | 481px 1600px */;
		line-height: clamp(1.925rem, 1.8068rem + 0.3932vw, 2.200rem) /* 28px 32px | 110% | 481px 1600px */;
		font-weight: 500;
		letter-spacing: -1px;
		margin: 20px 0 10px 0;
	}
	
	h6.nuovofont,
	.titolo-h6 {
		font-size: clamp(1.500rem, 1.4463rem + 0.1787vw, 1.625rem) /* 24px 26px | 481px 1600px */;
		line-height: clamp(1.800rem, 1.7355rem + 0.2145vw, 1.950rem) /* 24px 26px | 120% | 481px 1600px */;
		font-weight: 500;
		letter-spacing: -1px;
		margin: 20px 0 10px 0;
	}
	
	.titolo-xl {
		font-size: calc(50px + (80 - 50) * ((100vw - 320px) / (3000 - 320)));
		line-height: calc(50px + (80 - 50) * ((100vw - 320px) / (3000 - 320)));
		font-weight: 900;
		letter-spacing: -3px;
		margin: 20px 0 30px 0;
	}
	
	.titolo-xxl {
		font-size: calc(60px + (100 - 60) * ((100vw - 320px) / (3000 - 320)));
		line-height: calc(60px + (100 - 60) * ((100vw - 320px) / (3000 - 320)));
		font-weight: 900;
		letter-spacing: -3px;
		margin: 20px 0 30px 0;
	}
	
	.titolo-xxxl {
		font-size: calc(75px + (120 - 75) * ((100vw - 320px) / (3000 - 320)));
		line-height: calc(75px + (120 - 75) * ((100vw - 320px) / (3000 - 320)));
		font-weight: 900;
		letter-spacing: -3px;
		margin: 20px 0 30px 0;
	}


	p {
		color: var(--colore-p);
	}
	/*
	p {
		font-family: 'Poppins', sans-serif;
		font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (3000 - 320)));
		line-height: calc(23px + (25 - 23) * ((100vw - 320px) / (3000 - 320)));
	}

	ul li, ol li {
		font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (3000 - 320)));
		line-height: calc(23px + (25 - 23) * ((100vw - 320px) / (3000 - 320)));
	}
	*/


@media screen and (min-width: 3001px) {
	
	h1.nuovofont,
	.titolo-h1 {
		font-size: 75px;
		line-height: 75px;
	}
	
	h2.nuovofont,
	.titolo-h2 {
		font-size: 65px;
		line-height: 65px;
	}
	
	h3.nuovofont,
	.titolo-h3 {
		font-size: 55px;
		line-height: 55px;
	}
	
	h4.nuovofont,
	.titolo-h4 {
		font-size: 45px;
		line-height: 45px;
	}
	
	h5.nuovofont,
	.titolo-h5 {
		font-size: 35px;
		line-height: 35px;
	}
	
	h6.nuovofont,
	.titolo-h6 {
		font-size: 25px;
		line-height: 25px;
	}
	
	.titolo-xl {
		font-size: 80px;
		line-height: 80px;
	}
	
	.titolo-xxl {
		font-size: 100px;
		line-height: 100px;
	}
	
	.titolo-xxxl {
		font-size: 120px;
		line-height: 120px;
	}
	
	/*
	p {
		font-size: 18px;
		line-height: 25px;
	}
	
	ul li, ol li {
		font-size: 18px;
		line-height: 25px;
	}
	*/
}

@media screen and (max-width: 319px) {

	h1.nuovofont,
	.titolo-h1 {
		font-size: 45px;
		line-height: 45px;
	}
	
	h2.nuovofont,
	.titolo-h2 {
		font-size: 40px;
		line-height: 40px;
	}
	
	h3.nuovofont,
	.titolo-h3 {
		font-size: 35px;
		line-height: 35px;
	}
	
	h4.nuovofont {
		font-size: 30px;
		line-height: 35px;
	}
	
	h5.nuovofont,
	.titolo-h5 {
		font-size: 25px;
		line-height: 30px;
	}
	
	h6.nuovofont,
	.titolo-h6 {
		font-size: 20px;
		line-height: 25px;
	}
	
	.titolo-xl {
		font-size: 50px;
		line-height: 50px;
	}
	
	.titolo-xxl {
		font-size: 60px;
		line-height: 60px;
	}
	
	.titolo-xxxl {
		font-size: 75px;
		line-height: 75px;
	}
	
	/*
	p {
		font-size: 16px;
		line-height: 23px;
	}
	
	ul li, ol li {
		font-size: 16px;
		line-height: 23px;
	}
	*/
}
/* ========================================
   HOTEL VILLA CORALLO - Alpine-Modern Luxury
   Design System v2.0
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Colors - Natural Palette */
    --color-cream: #FAF8F5;
    --color-sand: #F5F1EB;
    --color-stone: #E8E4DE;
    --color-taupe: #C4BDB4;
    --color-warm-gray: #9A938A;
    --color-charcoal: #2C2926;
    --color-espresso: #1A1816;

    /* Accent Colors */
    --color-gold: #B8976A;
    --color-gold-light: #D4BC94;
    --color-gold-dark: #8B7355;

    /* Semantic Colors */
    --bg-primary: var(--color-cream);
    --bg-secondary: var(--color-sand);
    --bg-dark: var(--color-espresso);

    --text-primary: var(--color-charcoal);
    --text-secondary: var(--color-warm-gray);
    --text-inverse: var(--color-cream);
    --text-light: rgba(255, 255, 255, 0.7);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;

    /* Layout */
    --container-max: 1600px;
    --gutter: clamp(1.5rem, 4vw, 3rem);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */

.text-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

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

.section-header__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   ANIMATIONS
   ======================================== */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

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

@media (max-width: 768px) {
    :root {
        --space-3xl: 3.5rem;
        --space-4xl: 5rem;
    }
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.site-header--scrolled {
    background-color: rgba(18, 47, 65, 0.95);
    padding: var(--space-sm) 0;
    backdrop-filter: blur(10px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1002;
}

.site-header__logo img {
    height: 50px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.site-nav__list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}
.site-nav__list li {
    position: relative;
}

.site-nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) 0;
    position: relative;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    transition: color var(--transition-base);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    transition: width var(--transition-base);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
    width: 100%;
}

.site-nav__link--active {
    color: var(--color-gold-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-base);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav__list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        background: rgba(18, 47, 65, 0.98);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
    }

    .site-nav__list.active {
        opacity: 1;
        visibility: visible;
    }

    .site-nav__link {
        font-size: var(--text-lg);
        text-shadow: none;
    }

    /* Ensure header stays above mobile nav background */
    .site-header__inner {
        position: relative;
        z-index: 1002;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: var(--color-espresso);
    color: var(--text-inverse);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.site-footer__brand {
    max-width: 300px;
}

.site-footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: #fff;
    margin-bottom: var(--space-md);
    max-width: 250px;
}

.site-footer__logo span {
    color: var(--color-gold-light);
}

.site-footer__description {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.site-footer__social {
    display: flex;
    gap: var(--space-sm);
}

.site-footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.site-footer__social-link:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.site-footer__social-link img {
    width: 25px;
    height: 25px;
    stroke: #fff;
    fill: none;
}

.site-footer__column h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.site-footer__links a {
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color var(--transition-base);
}

.site-footer__links a:hover {
    color: var(--color-gold-light);
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.site-footer__contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer__contact-item a {
    color: var(--text-light);
    transition: color var(--transition-base);
}

.site-footer__contact-item a:hover {
    color: var(--color-gold-light);
}

.site-footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__copyright {
    font-size: var(--text-sm);
    color: var(--text-light);
}

.site-footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.site-footer__legal a {
    font-size: var(--text-sm);
    color: var(--text-light);
    transition: color var(--transition-base);
}

.site-footer__legal a:hover {
    color: var(--color-gold-light);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

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

    .site-footer__brand {
        grid-column: span 1;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ========================================
   SECTION LABEL
   ======================================== */

.section-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-label--light {
    color: var(--color-gold-light);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-md) var(--space-xl);
    transition: var(--transition-base);
}

.btn--outline {
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
}

.btn--outline:hover {
    background: var(--color-charcoal);
    color: var(--text-inverse);
}

.btn--primary {
    background: var(--color-charcoal);
    color: var(--text-inverse);
}

.btn--primary:hover {
    background: var(--color-gold);
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox__image {
    opacity: 1;
    transform: scale(1);
}

.lightbox__caption {
    margin-top: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2001;
}

.lightbox__close:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.lightbox__prev,
.lightbox__next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2001;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

@media (max-width: 768px) {
    .lightbox__prev,
    .lightbox__next,
    .lightbox__close {
        width: 44px;
        height: 44px;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }

    .lightbox__close {
        top: 10px;
        right: 10px;
    }
}
/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 24, 22, 0.0) 0%,
        rgba(0, 41, 67, 0.41) 80%,
        rgba(18, 47, 65, 0.71) 100%
    );
    z-index: -1;
}

.page-hero__content {
    text-align: center;
    max-width: 800px;
    padding: 0 var(--gutter) 80px var(--gutter);
    color: var(--text-inverse);
}

.page-hero__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-md);
}

.page-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
    text-shadow: 0px 0px 16px #696565;
}

.page-hero__title em {
    font-style: italic;
}

.page-hero__text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .page-hero {
        height: 70vh;
        min-height: 400px;
    }

    .page-hero__content {
        padding: 0 var(--gutter) 60px var(--gutter);
    }

    .page-hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}
/* ========================================
   HOME PAGE - Alpine-Modern Luxury Style
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 24, 22, 0.0) 0%,
        rgba(0, 41, 67, 0.41) 80%,
        rgba(18, 47, 65, 0.71) 100%
    );
    z-index: -1;
}

.hero__content {
    text-align: center;
    max-width: 900px;
    padding: 0 var(--gutter) 100px var(--gutter);
    color: var(--text-inverse);
}

.hero__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: var(--space-lg);
    text-shadow: 0px 0px 16px #696565;
}

.hero__title em {
    font-style: italic;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro {
    padding: var(--space-4xl) 0;
}

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

.intro__content {
    max-width: 560px;
}

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

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

.intro__image {
    overflow: hidden;
}

.intro__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro__image:hover img {
    transform: scale(1.03);
}

/* ========================================
   ROOMS SECTION
   ======================================== */

.rooms {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.room-card {
    background: var(--bg-primary);
    overflow: hidden;
    transition: var(--transition-base);
}

.room-card:hover {
    transform: translateY(-4px);
}

.room-card__image {
    overflow: hidden;
}

.room-card__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-card:hover .room-card__image img {
    transform: scale(1.05);
}

.room-card__content {
    padding: var(--space-lg);
}

.room-card__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.room-card__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.room-card__features {
    display: flex;
    gap: var(--space-sm);
}

.room-card__feature {
    font-size: var(--text-sm);
    color: var(--color-gold);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--color-stone);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--space-4xl) 0;
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.services .section-header__title {
    color: var(--text-inverse);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: var(--space-2xl);
    background: rgba(255, 255, 255, 0.1);
}

.service {
    background: var(--bg-dark);
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service:hover::before {
    transform: scaleX(1);
}

.service:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
}

.service__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold);
    stroke-width: 1.5;
    fill: none;
}

.service__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--text-inverse);
    margin-bottom: var(--space-sm);
}

.service__text {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
}

.gallery__item {
    overflow: hidden;
    position: relative;
}

.gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.testimonials .section-header__title {
    color: var(--text-inverse);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial {
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials__quote {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.testimonials__author {
    font-weight: 500;
    color: var(--color-gold-light);
}

.testimonials__source {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .intro__content {
        max-width: 100%;
    }

    .rooms__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero__content {
        padding: 0 var(--gutter) 80px var(--gutter);
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .rooms__grid {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: span 1;
    }

    .gallery__item {
        height: 250px;
    }
}

