/* ===================================================================
   Project      : Point Zone Resort Website
   File         : style.css
   Description  : Global styles and reusable UI components
   Author       : CHRISTOPHER PETER MSUBI
   Version      : 1.0.0
   =================================================================== */

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    
}

@font-face {
    font-family: 'Roboto Italic';
    src: url('../fonts/roboto/Roboto-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfairdisplay/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    
}

@font-face {
    font-family: 'Playfair Display Italic';
    src: url('../fonts/roboto/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Italic';
    src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}


/* Applying fonts 
    font-family: 'Roboto', sans-serif;
    font-family:'Playfair Display',serif;
    font-family: 'Inter', sans-serif;    
*/


/* ==================================================
   01. DESIGN TOKENS
================================================== */


:root{

    /* ---------- COLORS ---------- */

    --color-primary:#aa8453;
    --color-primary-hover:#8f6f47;

    --color-brand:#2b78b8;

    --color-dark:#222222;

    --color-white:#ffffff;

    --color-secondary-bg:#f6f1eb;

    --color-card-bg:#fcfcfc;

    --color-text:#222222;

    --color-text-light:#959595;

    --color-muted:#c2c2be;

    /* ---------- TYPOGRAPHY ---------- */

    --font-heading:'Playfair Display', serif;

    --font-body:'Roboto', sans-serif;

    /* ---------- LAYOUT ---------- */

    --container-width:1320px;

    --header-height:90px;

    --section-spacing:96px;

    /* ---------- BORDER ---------- */

    --radius-sm:4px;

    --radius-md:8px;

    /* ---------- SHADOW ---------- */

    --shadow-light:
        0 8px 30px rgba(0,0,0,.08);

    /* ---------- TRANSITIONS ---------- */

    --transition-fast:.3s ease;

    --transition-normal:.5s ease;

    --transition-slow:.8s ease;

}



* {

    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {

    scroll-behavior: smooth;
    /*height: 100%;*/
    }

body {

    font-family:var(--font-body);

    color:var(--color-text);

    background:var(--color-white);
    overflow-x: hidden;
}


/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display',serif;
}




/* ==================================================
   04. GLOBAL SVG COMPONENTS
================================================== */

.svg-icon{

    display:block;

    width:28px;
    height:28px;    

    fill:none;

    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;

    vector-effect:non-scaling-stroke;

    transition:
        transform .35s ease,
        color .35s ease,
        opacity .35s ease;

}


/* ==================================================
   05. BUTTON
================================================== */


.btn-primary{

    display: inline-flex;
    align-items: center;
    justify-content: center;    

    height: 58px;

    padding: 0 18px;

    font-family: var(--font-body);
    font-size: .95rem;

    text-decoration: none;

    white-space: nowrap;

    letter-spacing: .5px;

    transition: var(--transition-fast);

    color: var(--color-white);

    background: var(--color-primary);

    border: 1px solid var(--color-primary);
}

.btn-primary:hover{

    background: var(--color-primary-hover);

    transform: translateY(-1px);
}


/* ==================================================
   06. ANIMATION
================================================== */

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .9s ease,
        transform .9s ease;

}



.reveal.is-visible {

    opacity:1;
    transform:translateY(0);

}


/* ==================================================
   07. SCREEN READER ONLY
================================================== */

.sr-only{

    position:absolute;

    width:1px;
    height:1px;

    padding:0;
    margin:-1px;

    overflow:hidden;

    clip:rect(0, 0, 0, 0);
    clip-path:inset(50%);

    white-space:nowrap;

    border:0;

}


/* ==========================
   CONTAINER
========================== */

.container {

    width: 100%;
    max-width:var(--container-width);
    margin: auto;
    padding: 0 20px;
}

/* ==========================
   01. HEADER
========================== */

.site-header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height:var(--header-height);

    z-index: 999;

    transition:
        background-color .35s ease,
        box-shadow .35s ease,
        backdrop-filter .35s ease;
}

.site-header.is-scrolled {

    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 8px 28px rgba(0,0,0,.08);

}

.header-container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 100%;

}

/*==================================================
    02. LOGO
==================================================*/

.logo {

    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;

}

.logo img {

    width:70px;
    height:70px;

}

.logo span {

    color:var(--color-white);
    font-size:1.15rem;
    font-weight:600;
    letter-spacing:1px;
    transition:color .35s ease;

}

.site-header.is-scrolled .logo span{
    color:var(--color-text);
}


/*==================================================
    03. DESKTOP NAVIGATION
==================================================*/

.desktop-nav{

    display:flex;

}

.main-nav{

    display:flex;

    align-items:center;

    gap:6px;

    list-style:none;

}

.main-nav>li{

    position:relative;

}

.main-nav>li>a,
.dropdown-toggle{

    display:flex;

    align-items:center;

    gap:0px;

    padding:10px 14px;

    border:none;

    background:none;

    border-radius:5px;

    color:var(--color-white);

    font:inherit;

    font-size:.95rem;

    cursor:pointer;

    text-decoration:none;

    transition:
        background-color .35s ease,
        color .35s ease;

}

.main-nav>li>a:hover,
.dropdown-toggle:hover{

    background:var(--color-primary);
    color:var(--color-white);

}

.site-header.is-scrolled .main-nav>li>a,
.site-header.is-scrolled .dropdown-toggle{

    color:var(--color-text);

}

.site-header.is-scrolled .main-nav>li>a:hover,
.site-header.is-scrolled .dropdown-toggle:hover{

    color:var(--color-white);

}

/*==================================================
    04.  DESKTOP DROPDOWN MENU
==================================================*/

.has-dropdown{
    position:relative;
}

/* Dropdown Menu */

.desktop-nav .dropdown{

    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    margin-top:3px;
    padding:12px 10px;

    list-style:none;

    background:var(--color-white);

    border-radius:8px;

    box-shadow:0 18px 40px rgba(0,0,0,.10);

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transform:translateY(12px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;

    z-index:100;

}

/* Show Dropdown */

.desktop-nav .has-dropdown:hover > .dropdown{

    opacity:1;
    visibility:visible;

    pointer-events:auto;

    transform:translateY(0);

}

/* Chevron Animation */

.desktop-nav .dropdown-icon{

    display:flex;
    transition:transform .35s ease;

}


/* Used for both Desktop and Mobile View */
.dropdown-icon .svg-icon{

    width: 18px;
    height: 18px;
}

.desktop-nav .has-dropdown:hover .dropdown-icon{

    transform:rotate(180deg);

}

/* Dropdown Links */

.desktop-nav .dropdown a{

    display:block;

    padding:12px 24px;

    font-size:.90rem;

    color:var(--color-text);

    text-decoration:none;

    border-radius:5px;

    transition:
        background-color .35s ease,
        color .35s ease,
        padding-left .35s ease;

}

/* Hover */

.desktop-nav .dropdown a:hover{

    background:#f8f8f2;

    color:var(--color-primary);

    padding-left:30px;

}

/* Divider */

.dropdown-divider{

    height:1px;

    margin:6px 20px;

    background:#ece8e2;

}

/*==================================================
    05. BOOK BUTTON
==================================================*/

.btn-book{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    height:48px;
    padding:0 24px;
    border:1px solid var(--color-white);
    color:var(--color-white);
    text-decoration:none;
    /*white-space: nowrap;*/

    transition:
        background-color .35s ease,
        color .35s ease,
        border-color .35s ease;

}

.btn-book:hover{

    background:var(--color-white);
    color:var(--color-text);

}

.site-header.is-scrolled .btn-book{

    background:var(--color-primary);
    border:none;
    color:var(--color-white);

}

.site-header.is-scrolled .btn-book:hover{

    background:var(--color-text);

}

/*==================================================
    06. MOBILE DRAWER
==================================================*/

.mobile-toggle{

    display:none;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    background: none;
    border: none;

    cursor:pointer;

    color:var(--color-white);

    transition:color .35s ease;

}

.site-header.is-scrolled .mobile-toggle{

    color:var(--color-text);

}


/* Overlay */
.mobile-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:998;
}

.mobile-menu{
    display:none;
}

/* Drawer */
.mobile-menu{

    position:fixed;
    top:60px;
    right:0;

    width:min(340px,100%);
    /*height:85vh; height:calc(100vh - 60px);*/

    display:flex;
    flex-direction:column;
    background:var(--color-white);

    transform:translateX(100%);

    transition:transform .40s ease;

    z-index:999;

}

.mobile-menu-header{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    height:60px;

    padding:0 24px;

    border-bottom:1px solid #ece8e2;

}

.close-menu{

    display:flex;
    align-items:center;
    justify-content:center;

    width:34px;
    height:34px;

    border:none;
    background:none;
    cursor:pointer;

    color:var(--color-text);

}

.mobile-menu-footer{

    /*margin-top:auto;*/

    padding:24px;

    border-top:1px solid #ece8e2;

}

.mobile-book{

    display: flex;
    justify-content:center;
    margin-inline: auto;

    width:200px;

    background:var(--color-primary);
    border:none;
    color:var(--color-white);
    
}

.mobile-book:hover{

    background:var(--color-text);
    color:var(--color-white);

}


body.menu-open{

    overflow:hidden;

}

body.menu-open .mobile-overlay{

    opacity:1;
    visibility:visible;

}

body.menu-open .mobile-menu{

    transform:translateX(0);

}

/*==================================================
    07. MOBILE NAVIGATION
==================================================*/

.mobile-nav{

    flex:1;

    overflow-y:auto;

    padding:10px;

}

.mobile-nav .main-nav{

    display:flex;
    flex-direction:column;
    align-items:stretch; /*  set > li{ align-self:stretch;}*/

    gap:0;

    margin:0;
    padding:0;

    list-style:none;

}

.mobile-nav .main-nav > li{

    /*
    align-self:stretch;
    border-bottom:1px solid #ece8e2;
    */

}


.mobile-nav .main-nav > li > a,
.mobile-nav .dropdown-toggle{

    display:flex;
    align-items:center;
    justify-content:flex-start;

    gap:8px;

    width:200px;

    padding:15px 20px;

    border:none;
    background:none;

    font:inherit;
    font-size:0.95rem;
    color:var(--color-text);

    text-decoration:none;
    cursor:pointer;

    transition:
        background-color .35s ease,
        color .35s ease;

}

.mobile-nav .main-nav > li > a:hover,
.mobile-nav .dropdown-toggle:hover{

    background:#f8f8f2;
    color:var(--color-primary);

}

.mobile-nav .dropdown-icon{

    display:flex;
    
    transition:transform .35s ease;

}



.mobile-nav .has-dropdown.is-open .dropdown-icon{

    transform:rotate(180deg);

}


.mobile-nav .dropdown{

    max-height:0;
    overflow:hidden;

    width:220px;

    padding:0 10px;
    margin:0;

    list-style:none;

    background:#fafafa;

    transition:max-height .35s ease;

}

.mobile-nav .has-dropdown.is-open > .dropdown{

    max-height:600px;

}


.mobile-nav .dropdown li{

    list-style:none;
    overflow:hidden;

}

.mobile-nav .dropdown a{

    display:block;

    padding:15px 10px;

    font-size:.90rem;

    color:var(--color-text);

    text-decoration:none;

    border-radius:5px;

    transition:
        background-color .35s ease,
        color .35s ease,
        padding-left .35s ease;

}

.mobile-nav .dropdown a:hover{

    background:#f8f8f2;

    color:var(--color-primary);

    padding-left:15px;

}

.mobile-nav .dropdown-divider{

    height:1px;

    margin:6px 20px;

    background:#ece8e2;

}




/* ==================================================
   07. HERO SECTION
================================================== */

.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}



/* HERO MEDIA */

.hero-media{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .9s ease,
        visibility .9s ease;
}

.hero-slide.is-active{
    opacity: 1;
    visibility: visible;
}

.hero-slide picture,
.hero-slide img{
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slide img{
    object-fit: cover;
    object-position: center center;
}

.hero-slide:nth-child(3) img{
    object-position:center 35%; /*or object-position:center top;*/
}


/* HERO OVERLAY */

.hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(20,20,20, 0.78),
            15%, /* Forces the mathematical midpoint to happen at 15% instead of 50% */
            rgba(20,20,20, 0)
        );

    /*

    background:
        linear-gradient(
            90deg,
            rgba(20,20,20,.78),
            rgba(20,20,20,.39) 25%,
            rgba(20,20,20,.10) 50%,
            rgba(20,20,20,.02) 75%,
            rgba(20,20,20,.00) 100%
        );

    background:
        linear-gradient(
            90deg,
            rgba(20,20,20,.78) 0%,
            rgba(20,20,20,.58) 28%,
            rgba(20,20,20,.32) 55%,
            rgba(20,20,20,.12) 75%,
            rgba(20,20,20,.05) 100%
        );
        */
}

/* HERO CONTAINER */

.hero .container{
    position: relative;
    z-index: 10;
    width: 100%;

}

.hero-content{
    position: relative;
    max-width: 470px;
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .9s ease-out,
        transform .9s ease-out;

    padding: 30px;
    border-radius: var(--radius-md);

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);

    background: rgba(20,20,20,.08);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-light);

}

.hero-content.is-visible{

    opacity:1;
    transform:translateY(0%);
}


/* HERO INTRO */

.hero-intro{
    margin-bottom: 20px;
}

.hero-accent{
    display: block;

    width: 70px;
    height: 2px;

    margin-bottom: 18px;

    background: var(--color-primary);
}

.hero-eyebrow{

    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .82rem;
    color: rgba(255,255,255,.80);
    margin-bottom: 10px;
}

.hero-brand{

    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 22px;
}


/* HERO TYPOGRAPHY */

.hero-title{

    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2rem);
    line-height:1.18;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-description{

    /*max-width: 510px;*/
    font-family: var(--font-body);
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(255,255,255,.88);
    margin-bottom: 26px;
}

/* HERO ACTIONS */

.hero-actions{

    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hero .btn{

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 55px;
    padding: 0 30px;
    font-family: var(--font-body);
    font-size: .95rem;
    text-decoration: none;
    letter-spacing: .5px;
    transition: var(--transition-fast);

}



.btn-outline{

    color: var(--color-white);
    border: 1px solid rgba(255,255,255,.55);
    background: transparent;
}

.btn-outline:hover{

    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-1px);
}



/* HERO PAGINATION */

.hero-pagination{

    position: absolute;

    left: 50%;
    bottom: 42px;

    transform: translateX(-50%);

    display: flex;
    gap: 12px;

    z-index: 30;
}

.hero-dot{

    width: 7px;
    height: 7px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,.45);

    cursor: pointer;

    transition: all .35s ease;
}

.hero-dot:hover{

    background: rgba(255,255,255,.85);
}

.hero-dot.is-active{

    background: var(--color-primary);
    transform:scale(1.35);
    box-shadow:0 0 12px rgba(170,132,83,.45);
}


/* HERO CONTROLS */

.hero-controls{
    position: absolute;
    right: 10%;
    bottom: 20px;

    z-index: 30;

    display: flex;
    flex-direction: row;
    gap: 12px;
}

.hero-control{

    width: 50px;
    height: 50px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;

    background: rgba(20,20,20,.16);

    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);

    cursor: pointer;

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .4s ease;
}

.hero-control:hover{

    background: rgba(170,132,83,.95);
    border-color: var(--color-primary);
    transform: scale(.88); /*transform: translateY(-1px); */
}

.hero-control:focus-visible{

    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}


.hero-control svg{

    width: 20px;
    height: 20px;
    stroke: #ffffff;
    transition: 
        stroke .45s ease,
        transform .45s ease;
}

.hero-control:hover svg{

    stroke: #ffffff;
    transform: scale(.88);
}


/* HERO SCROLL */

.hero-scroll{

    position: absolute;
    right: 3px;
    bottom: 80px;

    width: 110px;
    height: 110px;

    z-index: 30;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 5px 0;
    border-radius: 999px;

     background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.12) 25%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.04) 70%,
        rgba(0, 0, 0, 0.015) 88%,
        rgba(0, 0, 0, 0) 100%       
    );
}

.hero-scroll-text{

    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white); /*color: rgba(255,255,255,.70);*/
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    
}

.hero-scroll-line{

    width: 1.3px;
    height: 52px;

    background: var(--color-white); /*background: rgba(255,255,255,.45);*/
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);

    

    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse{

    0%,100%{
        opacity:.35;
        transform:scaleY(.8);
    }

    50%{
        opacity:1;
        transform:scaleY(1);
    }
}


/* ==================================================
   08. AVAILABILITY SEARCH
================================================== */

/* SECTION WRAPPER */

.availability{

    position: relative;

    margin-top: -10px;

    margin-bottom: 100px;

    z-index: 40;
}

/* CARD */

.availability-card{

    background: var(--color-white);

    border-radius: 18px;

    padding: 50px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

    border: 1px solid rgba(0,0,0,.05);
}



/* BEGIN: SECTION HEADER USED GLOBALY */

.section-header{
    margin-bottom:45px;
}

.section-label{

    display:inline-block;
    position:relative;
    margin-bottom:22px;
    padding-left:62px;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--color-primary);

}


.section-label::before{

    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:46px;
    height:2px;
    background:var(--color-primary);
    transform:translateY(-50%);

}


.section-title{

    margin-bottom:24px;
    font-size:clamp(1.8rem,4vw,2rem);
    font-weight:500;
    line-height:1.2;
    font-family:var(--font-heading);
    color:var(--color-dark);

}


.section-text{

    color:var(--color-text);
    font-size:1rem;
    line-height:1.9;
    margin-bottom:20px;

}

/* END: SECTION HEADER USED GLOBALY */



/* AVAILABILITY SECTION HEADER */

.availability .section-header{    
    text-align: center;
    align-items: center;
}

.availability .section-label{

    letter-spacing:3px;
    color:#888;
    padding-left:0;
    margin-bottom:12px;    

}

.availability .section-label::before{

    display: block;
    position: relative;
    width:60px;
    margin:0 auto 20px;
}

.availability .section-title{
    margin-bottom:18px;
}

.availability .section-text{

    max-width:650px;
    margin:0 auto;
    line-height:1.6;
    color:#777;
    
}


/* FORM */

.availability-form{

    display:grid;

    grid-template-columns: 
        repeat(auto-fit, minmax(150px, 160px));
    justify-content: center; /* center the columns if there's extra space */

    gap:22px;

    align-items:end;
}

/* FORM GROUP */

.form-group{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form-group label{

    padding-left: 5px;

    font-size:.82rem;
    font-weight:500;

    color:#555;

    
}


/* INPUTS */

.form-group input,
.form-group select{

    width:100%;
    height:56px;

    padding:0 18px;

    font-size:.95rem;
    font-family:var(--font-body);

    border:1px solid rgba(0,0,0,.12);
    border-radius:12px;

    background:var(--color-white);

    transition:
        border-color .35s ease,
        box-shadow .35s ease;
}

/* Specific fix for the select dropdown */
.form-group select {

    /* 1. Clear out the broken default browser arrow */
    appearance: none;            /* Hides default browser arrow for modern browsers */
    -webkit-appearance: none;    /* Hides default browser arrow for Safari/Chrome */
    -moz-appearance: none;       /* Hides default browser arrow for Firefox */
    
    /* 2. Add extra padding on the right for the new arrow */
    padding-left: 18px;
    padding-right: 38px; 

    /* 3. Inject the offline SVG arrow code safely 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    
    /* 4. Position the new arrow perfectly 
    background-position: calc(100% - 14px) center; 
    background-size: 16px;*/
}

.form-group input:focus,
.form-group select:focus{

    outline:none;

    border-color:var(--color-primary);

    box-shadow:
        0 0 0 4px rgba(170,132,83,.12);
}


/* BUTTON */

.form-action{
    display:flex;
}

.form-action .btn{

    width:100%;
    white-space:nowrap;
}


/* Hover Effect */
.availability-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.availability-card:hover{

    /*transform:translateY(-4px);*/

    box-shadow:
        0 25px 70px rgba(0,0,0,.10);
}



/* ==================================================
   09. ABOUT SECTION
================================================== */

.about{

    position:relative;
    padding:50px 0;
    background:var(--color-white);
    overflow:hidden;

}


/* CONTAINER BREATH */

.about .container{
    padding-inline:50px;
}


/* GRID */

.about-grid{

    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(540px, 1fr));
    align-items:start;/*align-items:center;*/

    gap:50px;

}



/* CONTENT */

.about-content{
    width:max(100%,540px);
}


/* ABOUT LINK */

.discover-link{

    display:inline-flex;
    align-items:center;

    gap:14px;

    position:relative;

    font-size:.96rem;
    font-weight:600;

    letter-spacing:.04em;

    text-decoration:none;
    color:var(--color-dark);

    transition:
        color .35s ease,
        letter-spacing .35s ease;

}

.discover-arrow{

    display:flex;
    align-items:center;
    justify-content:center;

    width:36px;
    height:36px;

    border-radius:50%;

    background:var(--color-primary);

    color:#fff;

    flex-shrink:0;

    transition:
        transform .35s ease,
        background .35s ease;

}

.discover-link:hover{

    color:var(--color-primary);

    letter-spacing:.06em;

}


.discover-link:hover .discover-arrow{

    transform:translateX(8px);

}


/* IMAGES */

.about-images{

    position:relative;

    margin: 0 auto;

    width:100%;
    max-width:640px;
    min-height:640px;
    
    transform:translateY(18px);

}


/* IMAGE CARD */

.about-image{

    position:absolute;

    overflow:hidden;

    border-radius:10px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);

    transition:
        box-shadow .4s ease;


}

.about-image img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .7s ease;

}

.about-image:hover{

    box-shadow:
        0 28px 65px rgba(0,0,0,.18);

}

.about-image:hover img{

    transform:scale(1.05);

}


/* LARGE IMAGE */

.about-image-large{

    top:0;
    left:0;

    width:70%;
    height:480px;

    z-index:1;

}

/* SMALL IMAGE */

.about-image-small{

    right:0;
    bottom:0;

    width:48%;
    height:290px;

    border:10px solid #fff;

    z-index:2;

}



/* DECORATIVE SHAPE */

.about-images::after{

    content:"";

    position:absolute;

    top:-18px;
    right:0px;

    width:80px;
    height:80px;

    border:2px solid rgba(185,146,87,.18);
    border-radius:50%;

    z-index:0;

}


/* ENTRANCE ANIMATION */

.reveal.is-visible .about-image-large{

    opacity:1;

    transform:translateY(18px);

    transition-delay:.15s;

}



.reveal.is-visible .about-image-small{

    opacity:1;

    transform:translateY(18px);

    transition-delay:.3s;

}

/* Accessibility */

@media (prefers-reduced-motion:reduce){

    .about-content,

    .about-image,

    .about-link,

    .about-arrow{

        transition:none;

        transform:none;

        opacity:1;

    }

}



/* ==================================================
   10. FEATURED ROOMS & SUITES SECTION
================================================== */


/* SECTION */

.rooms{

    padding:70px 0;
    background:#faf9f6;  /*background:#fcfcfa; unobservable in a complete white scene*/

}

/* CONTAINER BREATH */

.rooms .container{
    
    padding-inline:50px;
}

/* SECTION HEADER */

.rooms .section-header{

    margin-bottom:50px;

}

/* GRID */

.rooms-grid{

    display:grid;

    grid-template-columns: 
        repeat(auto-fit, minmax(380px, 380px));
    justify-content: center;

    gap:30px;

}

/* ROOM CARD */

.room-card{

    display:flex;

    flex-direction:column;

    cursor:default;

}

/* ROOM BADGE */

.room-badge{

    position:absolute;

    top:18px;
    left:18px;

    z-index:3;

    padding:8px 12px;

    border-radius:5px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(6px);

    font-size:.70rem;
    font-weight:600;

    letter-spacing:.12em;
    text-transform:uppercase;

    color:var(--color-dark);

    transition:

        transform .35s ease,
        background .35s ease;

}

/* ROOM IMAGE */

.room-image{

    position:relative;

    aspect-ratio:4/3;

    overflow:hidden;

    border-radius:10px;

    margin-bottom:22px;

}


.room-image img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition: transform .8s ease;
    transform-origin:center center;

}

.room-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            to top,
            rgba(0,0,0,.08),
            transparent 45%

        );

    pointer-events:none;

}

/* ROOM CONTENT */

.room-content{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.room-title{

    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:500;

    color:var(--color-dark);

     transition: color .35s ease;

}

/* ROOM META */

.room-meta{

    display:flex;
    flex-wrap:wrap;

    gap:18px;

    font-size:.92rem;
    color:var(--color-text-light);

}

.room-meta-item{

    display:flex;
    align-items:center;

    gap:7px;

}

/* PRICE */

.room-price{

    display:flex;
    align-items:baseline;

    gap:10px;

}

.price-label{

    font-size:.78rem;
    font-weight:500;

    letter-spacing:.14em;
    text-transform:uppercase;

    color:var(--color-text-light);

}

.price-value{

    font-family:var(--font-heading);
    font-size:1.35rem;

    color:var(--color-primary);

}

.price-unit{

    font-size:.88rem;
    font-weight:500;

    color:var(--color-text-light);

}


/* ACTIONS */

.room-actions{

    display:flex;
    align-items:center;

    justify-content:space-between;

    padding-inline: 10px;

    padding-top:18px;

    border-top: 1px solid rgba(0,0,0,.08);

}

.room-actions .btn{

    height: 38px;
}

.room-link{

    display:inline-flex;

    align-items:center;

    gap:3px;

    font-size: .96rem;

    text-decoration:none;

    font-weight:600;

    color:var(--color-dark);

    transition:

        color .35s ease;

}

.room-arrow{

    display:flex;

    align-items:center;

    transition:transform .35s ease;

}

/* HOVER */

.room-card:hover .room-image img{

    transform:scale(1.06);

}

.room-card:hover .room-badge{

    transform:translateY(-2px);

}

.room-card:hover .room-title{

    color:var(--color-primary);

}

.room-link:hover {

    color:var(--color-primary);

}

.room-link:hover .room-arrow{

    transform:translateX(5px);

}


@media (hover:hover){

    .rooms-grid:hover .room-card{

        opacity:.9;

        transition:opacity .35s ease;

    }

    .rooms-grid:hover .room-card:hover{

        opacity:1;

    }

}


/* ==================================================
   11. AMENITIES SECTION
================================================== */

.amenities{

    padding:70px 0;

    background:#f6f1eb;

}

.amenities .container{

    padding-inline:50px;

}


/* SECTION HEADER */

.amenities .section-header{

    margin-bottom:55px;

}


/* AMENITIES GRID */

.amenities-grid{

    display:grid;

    grid-template-columns: 
        repeat(auto-fit, minmax(370px, 370px));
    justify-content: center;

    gap:20px;


}

/* AMENITY CARD */

.amenity-card{

    background:#ffffff;

    padding:40px 32px;

    border-radius:14px;

    text-align:center;

    position:relative;

    gap:10px;

    overflow:hidden;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);


    transition:
        transform .35s ease,
        box-shadow .35s ease;
        

}

/* DECORATIVE ACCENT 

.amenity-accent{

    width:40px;

    height:2px;

    background:#aa8453;

    margin:0 auto 24px;

    opacity:.8;

} */


/* ICON */

.amenity-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:74px;
    height:74px;

    margin:0 auto 20px;    

    border-radius:50%;

    background:#faf8f5;
    color:#aa8453;

    transition:
        transform .35s ease,
        background .35s ease;

}


/* TITLE */

.amenity-title{

    font-family:var(--font-heading);

    font-size:1.15rem;

    letter-spacing:.02em;

    font-weight:400;

    color:#222;

    margin-bottom:16px;

    transition:color .35s ease;

}



.amenity-title::before{

    content:"";

    display:block;

    width:60px;

    height:2px;

    background:#aa8453;

    margin:0 auto 10px;

    opacity:.8;

  

}


/* DESCRIPTION */

.amenity-description{

    font-size:.95rem;

    line-height:1.7;

    color:#777;

}

/* HOVER */

.amenity-card:hover{

    transform:translateY(-6px);

    box-shadow:

        0 18px 40px rgba(0,0,0,.08);

}


.amenity-card:hover .amenity-icon{

    transform:translateY(-4px);

}

.amenity-card:hover .svg-icon{

    transform:translateY(-2px) scale(1.08);

}

.amenity-card:hover .amenity-title{

    color:#aa8453;

}


/* ===================================================================
   FACILITIES SECTION
=================================================================== */


/* SECTION */

.facilities{

    padding:70px 0;
    background:#ffffff;

}

.facilities .container{

    padding-inline:100px;

}


/* SECTION HEADER */

.facilities .section-header{

    margin-bottom:45px;

}


/* FACILITIES GRID */

.facilities-grid{

    display:grid;
    gap:0;

}


/* FACILITY CARD */


.facility-card{

    display:grid;

    grid-template-columns:
        minmax(520px, 540px)
        minmax(520px, 540px);

    grid-template-areas:
        "media content";

    gap:0;

    justify-content:center;
    align-items:stretch;

}


.facility-card.reverse{

    grid-template-areas:
        "content media";

}

/* MEDIA */

.facility-media{

    grid-area:media;

    position:relative;
    overflow:hidden;
    isolation:isolate;

    max-height:400px;

}

.facility-image{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;
    backface-visibility:hidden;

    transition:transform .8s ease;

}

.facility-media::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            to top,
            rgba(0,0,0,.35),
            transparent 45%
        );

    z-index:1;

}

.facility-category{

    position:absolute;

    left:30px;
    bottom:28px;

    z-index:2;

    padding:8px 18px;
    border-radius:999px;

    background:rgba(255,255,255,.14);
    backdrop-filter:blur(12px);

    color:#ffffff;

    font-size:.75rem;
    letter-spacing:.18em;
    text-transform:uppercase;

    transition:
        background .35s ease,
        transform .35s ease;

}


/* CONTENT */

.facility-content{

    grid-area:content;

    display:flex;
    flex-direction:column;

    max-height:400px;

    background:#f6f1eb;
    padding: 40px 30px 30px;

}

.facility-title{

    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:500;
    color:var(--color-heading);

    margin-bottom:16px;

}


.facility-content .section-text{

    font-size:.95rem;
    line-height:1.7;
    margin-bottom:18px;
}


/* FEATURE LIST */

.facility-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:10px 20px;

    list-style:none;    

    padding:0;
    margin-bottom:40px;

}


/*.facility-features svg{

    width:14px;
    height:14px;
    flex-shrink:0;

}*/

.facility-features li{

    display:flex;
    flex-wrap: wrap;
    align-items:center;

    gap:10px;

    font-size:.90rem;
    color:#777;

}

.facility-content .discover-link{
    margin-top:5px;
}


/* HOVER EFFECTS */

.facility-media:hover .facility-image{
    transform:scale(1.05);
}

.facility-media:hover .facility-category{

    background:rgba(170,132,83,.92);
    transform:translateY(-2px);

}


/* ===================================================================
   NEWS AND SPECIAL OFFERS SECTION
=================================================================== */


/* SECTION */

.news{

    padding:70px 0;

    background:#f6f1eb;

}

.news .container{

    padding-inline:50px;

}


/* SECTION HEADER */

.news .section-header{

    margin-bottom:45px;

}


/* NEWS GRID */

.news-grid{

    display:grid;

     grid-template-columns: 
        repeat(auto-fit, minmax(370px, 390px));
    justify-content: center;

    gap:22px;

}


/* NEWS CARD */

.news-card{

    display:flex;
    flex-direction:column;

    background:#ffffff;

    border-radius:5px;

    overflow:hidden;

    box-shadow:
        0 12px 40px rgba(0,0,0,.06);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


/* NEWS MEDIA */

.news-media{

    position:relative;
    overflow:hidden;
    isolation:isolate;

}

.news-image{    

    display:block;
    object-fit:cover;

    width:100%;
    height:290px;

    backface-visibility:hidden;
    transition:transform .8s ease;    

}

.news-media::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            to top,
            rgba(0,0,0,.22),
            transparent 55%
        );

    z-index:1;

}


/* NEWS BADGE */

.news-badge{

    position:absolute;

    display:flex;
    flex-direction:column;
    gap:2px;

    top:20px;
    left:20px;

    z-index:2;    

    padding:10px 14px;
    border-radius:5px;

    background:rgba(255,255,255,.92);
    /*background:rgba(170,132,83,.92);*/

    color:var(--color-dark);
    /*color:#ffffff;*/

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}

.news-discount{

    font-size:1rem;
    font-weight:700;
    line-height:1;

}

.news-label{

    font-size:.62rem;
    letter-spacing:.16em;
    text-transform:uppercase;

    opacity:.9;

}


/* NEWS CONTENT */

.news-content{

    display:flex;
    flex-direction:column;
    gap:12px;

    padding:28px;

}

.news-date{

    font-size:.82rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--color-primary);

}

.news-date::before{

    content:"";

    display:block;

    width:36px;
    height:2px;

    margin-bottom:10px;

    background:var(--color-primary);

}

.news-title{

    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:500;

    line-height:1.35;
    color:var(--color-heading);
}

.news-content .section-text{

    font-size:.95rem;
    line-height:1.6;

    color:var(--color-text-light);

    margin-bottom:18px;
}


/* HOVER EFFECTS */

.news-card:hover{

    /*transform:translateY(-8px);*/

    box-shadow:
        0 22px 55px rgba(0,0,0,.10);

}


.news-media:hover .news-image{

    transform:scale(1.05);

}

.news-media:hover .news-badge{

    transform:translateY(-2px);
    background:rgba(184,144,92,.96);
    color:#ffffff;

}

/* ===================================================================
   FIND US SECTION
=================================================================== */


/* SECTION */

.location{

    padding:70px 0;

    background:#ffffff;

}

.location .container{

    padding-inline:50px;

}

.location .section-header{

    margin-bottom:40px;

}


/* LOCATION GRID */

.location-grid{

    display:grid;
    grid-template-columns:
        minmax(580px,680px)
        minmax(300px,400px);
    gap:50px;

    max-width:1130px; /* 680 + 400 + 50 */
    margin-inline:auto;

    /*align-items:start;*/
}


/* MAP */

.location-map{

    position:relative;

}

.map-wrapper{

    position:relative;
    overflow:hidden;

    min-height:560px;

    border-radius:18px;
    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

}

.map-wrapper iframe{

    position:absolute;

    width:100%;
    height:100%;

    inset:0;
    border:0;    

}

.map-fullscreen{

    position:absolute;

    top:18px;
    right:18px;

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.95);
    color:var(--color-heading);

    cursor:pointer;

    transition:
        background .35s ease,
        transform .35s ease,
        color .35s ease;

    z-index:10;

}

.map-fullscreen svg{

    width:24px;
    height:24px;

}


/* CONTACT CARD */

.contact-card{

    display:flex;
    flex-direction:column;
    gap:10px;

    padding:30px 40px;

    background:#ffffff;
    border-radius:18px;
    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

}

/* CONTACTS */

.contacts{

    display:flex;
    flex-direction:column;
    gap:10px;

}


/* CONTACT GROUP */

.contact-group{

    display:flex;
    gap:15px;
    align-items:flex-start;

}

.contact-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    flex-shrink:0;

    border-radius:50%;
    background:rgba(170,132,83,.08);
    color:var(--color-primary);


}

.contact-icon svg{

    width:22px;
    height:22px;

}

.contact-details{

    display:flex;
    flex-direction:column;
    gap:5px;

}

.contact-title{

    font-family:var(--font-heading);
    font-size:1.05rem;
    font-weight:500;
    color:var(--color-heading);

}

.contact-descriptions{

    font-size:.85rem;
    line-height:1.5;
    color:var(--color-text-light);

    margin:0;

}


/* AIRPORT CARD */

.airport-card{

    display:flex;
    flex-direction:column;
    gap:20px;

    margin-top:10px;
    padding-top:12px;

    border-top:1px solid rgba(0,0,0,.08);

}

.airport-item{

    display:flex;
    gap:15px;
    align-items:center;

}

.airport-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border-radius:50%;
    background:rgba(170,132,83,.08);
    color:var(--color-primary);

    flex-shrink:0;

}

.airport-icon svg{

    width:18px;
    height:18px;

}

.airport-details{

    display:flex;
    flex-direction:column;
    gap:3px;

}

.airport-details h4{

    margin:0;

    font-size:.95rem;
    font-weight:500;

    color:var(--color-heading);
    font-family:var(--font-body);

}

.airport-details p{

    margin:0;

    font-size:.85rem;
    font-weight:400;

    color:var(--color-primary);

}


/* HOVER EFFECTS */

.map-fullscreen:hover{

    background:var(--color-primary);
    color:#ffffff;

    transform:translateY(-2px);

}


.contact-group:hover .contact-icon{

    background:rgba(170,132,83,.14);

}

.airport-item:hover .airport-icon{

    background:rgba(170,132,83,.14);

}


/* ==================================================
   FOOTER CALL TO ACTION SECTION
================================================== */

.footer-cta{

    padding:70px 0;
    border-top:1px solid rgba(0,0,0,.08);
    background: whitesmoke;

}

.footer-cta-content{

    max-width:720px;

    margin:0 auto;

    text-align:center;

}


.footer-cta-content .section-title{

    margin-bottom:20px;

    font-size:clamp(1.8rem,4vw,2rem);

    

}


.footer-cta-actions{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:24px;

    margin-top:40px;

    flex-wrap:wrap;

}



/* ==================================================
   SITE FOOTER
================================================== */

.site-footer{

    position:relative;

    background:#222222;

    color:rgba(255,255,255,.75);

    padding:70px 0 20px;

    overflow:hidden;

}

.site-footer .container{

    padding-inline:50px;

}

.site-footer a{

    color:inherit;
    text-decoration:none;

    transition:.35s ease;

}

/* BACK TO TOP */

.back-to-top{

    display:flex;
    align-items:center;
    justify-content:center;

    position:absolute;

    top: 20px;
    right:20px;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:var(--color-primary);

    color:#fff;

    box-shadow:0 12px 25px rgba(0,0,0,.18);    

    cursor:pointer;

    transition:
        transform .45s ease,
        color .45s ease,
        border-color .45s ease,
        background .45s ease;    

}

.back-to-top svg{

    width:18px;
    height:18px;

}

.back-to-top:hover{

    transform:translateY(-2px);

}

/* FOOTER GRID */

.footer-grid{

    display:grid;

    grid-template-columns:
        minmax(320px, 2fr)
        minmax(220px, 1fr)
        minmax(250px, 1fr);

    gap:50px;

    max-width:1200px;
    width:100%;
    margin:0 auto 20px;

}

/* FOOTER COLUMNS */

.footer-column{

    display:flex;
    flex-direction:column;

}

.description{

    padding-right: 50px;

}

.footer-heading{    

    font-family:var(--font-body);
    font-size:1.25rem;
    font-weight:500;

    color:#CBCBCB;

    margin-bottom:15px;

}

/* BRAND */

.footer-brand{

    display:flex;
    align-items:center;

        
}

.footer-logo{

    display:inline-flex;   

}

.footer-logo img{

    width:100px;
    height:100px;

}

.footer-tagline{

    font-family:var(--font-body);
    font-size:1.25rem;
    letter-spacing:.08em;

    text-transform:uppercase;
    color:#CBCBCB;

    margin-bottom:15px;   

}

.footer-description{

    font-size:.95rem;
    letter-spacing:.02em;
    line-height:1.5;

    max-width:100%;

    color:var(--color-text-light);

}


/* SOCIAL ICONS */

.footer-social{

    display:flex;
    
    gap:14px;
    margin:20px 0;

}

.footer-social a{    

    display:flex;
    align-items:center;
    justify-content:center;

    width:40px;
    height:40px;

    background:rgba(255,255,255,.06); /*border:1px solid rgba(255,255,255,.18); */
    border-radius:50%;

    transition:
        transform .6s ease,
        color .6s ease,
        border-color .6s ease,
        background .6s ease;


}


/*All Social Media SVG's*/
.social-media-svg {

    width:22px;
    height:22px;

    display:block;

    fill:#CBCBCB; /*#CBCBCB  #D3D3D3 #F0F0F0 */
    stroke:#CBCBCB; /*stroke:currentColor;*/

    stroke-width:1;
    stroke-linecap:round;
    stroke-linejoin:round;

    vector-effect:non-scaling-stroke;

    transition:
        fill .7s ease,
        stroke .7s ease;
}



.footer-social a:hover{

    background:var(--color-white);

}

.footer-social a:hover .social-media-svg{

    fill:#222; /*#CBCBCB  #D3D3D3 #F0F0F0 */
    stroke:#222;

}


/* FOOTER LINKS */

.footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    
    width: auto;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.7s ease;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-primary);
    border-radius: 50%;

    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.7s ease;
}

.footer-links li:hover {
    padding-left: 10px;
}

.footer-links li:hover::before {
    left: 0;
    opacity: 1;
}

.footer-links a {
    font-size: .95rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 1s ease;
}

.footer-links li:hover a {
    color: #fff;
}

/* FOOTER CONTACT */

.site-footer .contact-group{

    margin-bottom:10px;

}

.site-footer .contact-icon{

    width:38px;
    height:38px;

    background:rgba(255,255,255,.06);

}


.site-footer .contact-icon svg{

    width:18px;
    height:18px;

}

.site-footer .contact-title{

    font-family:var(--font-body);
    font-size:.95rem;
    font-weight:400;
    color:#CBCBCB;

}

.site-footer .contact-descriptions{    

    font-size:.90rem;  

}

/* FOOTER BOTTOM */

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;

    padding-top:22px;

    font-size:.90rem;

    border-top:1px solid rgba(255,255,255,.06);    

}


.footer-bottom-developer {

    display:flex;
    flex-wrap:wrap;

    justify-content:space-between;
    align-items:center;

    gap:5px;

}

.footer-bottom-developer div{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:3px;

    transition:
        transform .5s ease,
        color .5s ease;

}

.footer-bottom-developer .details{

    color: var(--color-primary);

}

.footer-bottom-developer .icon:hover{

    color:var(--color-primary);
    transform: scale(1.13);

}

/*.footer-bottom-developer a:hover{

    color:var(--color-primary);
    transform: scale(1.13);

}*/



.footer-bottom-links{

    display:flex;
    align-items:center;
    gap:14px;

}

.footer-bottom-links span{

    opacity:.35;

}

.footer-bottom-links a:hover{

    color:#fff;

}

/* HOVER POLISH */

.site-footer a:hover{

    text-decoration:none;

}

.footer-logo:hover{

    opacity:.9;

}





/* ==================================================
   PAGE ROOMS & SUITES
================================================== */

/* ==================================================
   01. PAGE HERO
================================================== */

.page-hero{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:440px;

    overflow:hidden;

    isolation:isolate;

}


.page-hero-media{

    position:absolute;

    inset:0;

}

.page-hero-media img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

}

.page-hero .hero-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        );

}

.page-hero-content{

    position:relative;

    z-index:2;

    max-width:470px;

    /*text-align:center; We will use this in mobile break point now it should float on the left*/ 

    color:#ffffff;

}


/* ==================================================
   02. ROOMS SHOWCASE
================================================== */

.rooms-showcase{

    padding:70px 0;

    background:var(--color-white);

}

.rooms-showcase .container{

    padding-inline:100px;

}


/* ==================================================
   03. ROOMS GRID
================================================== */

.rooms-showcase-grid{

    display:grid;
    gap:0;

}


/* ==================================================
   04. ROOM CARD
================================================== */

.room-showcase-card{

    display:grid;

    grid-template-columns:
        minmax(520px,540px)
        minmax(520px,540px);

    grid-template-areas:
        "media content";

    justify-content:center;
    align-items:stretch;

}


.room-showcase-card.reverse{

    grid-template-areas:
        "content media";

}


/* ==================================================
   05. ROOM MEDIA
================================================== */

.room-showcase-media{

    grid-area:media;

    position:relative;

    overflow:hidden;

    isolation:isolate;

    max-height:480px;

}


.room-showcase-image{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .8s ease;

}


.room-showcase-media::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.30),
            transparent 45%
        );

    z-index:1;

}


/* ==================================================
   06. ROOM BADGE
================================================== */

.room-showcase-price-badge{

    position:absolute;

    top:22px;
    left:20px;

    z-index:2;

    padding:10px 15px;

    border-radius:5px;

    background:rgba(255,255,255,.92);
    color:var(--color-dark);

    font-size:.85rem;
    letter-spacing:.14em;

    text-transform:uppercase;

    transition: transform .35s ease;

}

.room-showcase-price-badge .price-label{

    font-family:var(--font-body);    
    font-size:.85rem;   

    color:var(--color-text-light);

}

.room-showcase-price-badge .price-value{

    font-family:var(--font-body);
    font-size:.85rem;
    font-weight:600;

    color:var(--color-text);

}

.room-showcase-price-badge .price-unit{

    font-size:.85rem;

}


/* ==================================================
   07. ROOM CONTENT
================================================== */

.room-showcase-content{

    grid-area:content;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    background:#f6f1eb;

    padding:40px 30px;

}


.room-showcase-content .section-title{

    font-size:1.45rem;
    font-weight:500;

    margin-bottom:16px;

}

.room-showcase-content .section-text{

    font-size:.95rem;
    line-height:1.7;

    color:var(--color-text);    

    margin-bottom:18px;    

}


/* ==================================================
   08. ROOM META
================================================== */

.room-showcase-content .room-meta{

    display:flex;
    flex-wrap:wrap;

    gap:20px;

    font-size:.90rem;

    margin-bottom:20px;

}


.room-showcase-content .room-meta-item{

    display:flex;
    align-items:center;
    gap:8px;

}

.room-showcase-content .room-meta-item .svg-icon{

    transition: transform .35s ease;

}


/* ==================================================
   09. ROOM AMENITIES
================================================== */

.room-amenities{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:10px 20px;

    color:var(--color-text-light);

    list-style:none;/*list-style:disc inside;*/

    border-top:1px solid rgba(0,0,0,.08);

    padding-top: 20px;

    
    margin-bottom:35px;    

}


.room-amenities li{

    display: flex;
    align-items: center;   

    gap: 10px;

    font-size:.90rem;

}


/* ==================================================
   10. ROOM FOOTER
================================================== */

.room-footer{

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:15px;
    padding-top:15px;

    /*border-top:1px solid rgba(0,0,0,.08);*/

}

/* ==================================================
   11. PRICE
================================================== */

/*.room-footer .room-price{

    display:flex;
    align-items:baseline;
    gap:10px;

}*/

/* ==================================================
   12. ACTIONS
================================================== */

.room-footer .room-actions{

    display:flex;
    align-items:center;
    justify-content: space-between;

    width: 100%;    

}


.room-footer .room-actions .btn{

    height:42px;

}

/* ==================================================
   13. HOVER EFFECTS
================================================== */

/* Image */

.room-showcase-media:hover .room-showcase-image{

    transform:scale(1.05);

}


/* Badge */

.room-showcase-media:hover .room-showcase-price-badge{    

    transform:translateY(-2px);

}


/* Meta Icons */

.room-showcase-content:hover .room-meta-item .svg-icon{

    transform:scale(1.1);

}


/* ==================================================
   BOOKING MODAL
================================================== */

.booking-modal{

    position:fixed;

    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    z-index:3000;

    transition:
        opacity 1s ease,
        visibility 1s ease;

}


/* ==================================================
   MODAL OPEN
================================================== */

.booking-modal.is-open{

    opacity:1;
    visibility:visible;

    pointer-events:auto;

}


/* ==================================================
   OVERLAY
================================================== */

.booking-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(2px);

}


/* ==================================================
   DIALOG
================================================== */

.booking-dialog{

    position:relative;

    width:min(100%,540px);

    max-height:90vh;

    overflow-y:auto;

    background:var(--color-white);

    border-radius:18px;

    box-shadow:
        0 28px 80px rgba(0,0,0,.18);

    z-index:2;


}

.booking-modal.is-open .booking-dialog {
    animation: bookingDialog 2s ease forwards;
}


/* ==================================================
   HEADER
================================================== */

.booking-header{

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:24px 30px;

    border-bottom:
        1px solid rgba(0,0,0,.08);

}


.booking-header .booking-title{

    margin:0;

    font-family:var(--font-heading);
    font-size:1.45rem;
    font-weight:500;

    color:var(--color-heading);

}


/* ==================================================
   CLOSE BUTTON
================================================== */

.booking-header .booking-close{

    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:#f6f1eb;
    color:var(--color-heading);

    cursor:pointer;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;

}


.booking-header .booking-close svg{

    width:18px;
    height:18px;

}


.booking-header .booking-close:hover{

    background:var(--color-primary);
    color:var(--color-white);

    transform:rotate(90deg);

}


/* ==================================================
   FORM
================================================== */

.booking-form{;

    display:flex;

    flex-direction:column;

    gap:20px;

    padding:34px;

}


/* ==================================================
   GRID
================================================== */

.booking-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}


/* ==================================================
   FORM GROUP
================================================== */

/* Already defined in Availability Section

.form-group{

    display:flex;
    flex-direction:column;
    gap:5px;

}


.form-group label{

    font-size:.88rem;

    font-weight:600;

    color:var(--color-heading);

}*/


/* ==================================================
   INPUTS
================================================== */

.booking-form .form-group input,
.booking-form .form-group select{

    height:44px;

    padding:0 16px;

    font-size:.90rem;

    color:var(--color-text); 

    border-radius:8px;

}


/* ==================================================
   SUBMIT BUTTON
================================================== */


.booking-form .form-action{

    justify-content: center;
    align-items: center;

}

.booking-form .form-action .btn{

    margin-top: 8px;
    width:min(100%,360px);
    height:50px;

}


/* ==================================================
   SCROLLBAR
================================================== */

.booking-dialog::-webkit-scrollbar{

    width:8px;

}

.booking-dialog::-webkit-scrollbar-thumb{

    background:rgba(170,132,83,.4);
    border-radius:20px;

}


/* ==================================================
   ANIMATION
================================================== */

@keyframes bookingDialog{

    from{

        opacity:0;

        transform:
            translateY(30px)
            scale(.97);

    }

    to{

        opacity:1;

        transform:
            translateY(0)
            scale(1);

    }

}



/* ==================================================
   BOOKING ALERTS
================================================== */

.booking-alert{

    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;

    margin: 5px 10px;
    padding:10px 30px;

    border-radius:10px;

    font-size:.90rem;
    line-height:1.6;

    
}

.booking-alert-icon{
    
    display:flex;
    align-items:center;
    justify-content:center;

    width:72px;
    height:72px;

    margin:0 auto 18px;

    border-radius:50%;    

    background:#eefaf0;
    color:#1b7d39;

    font-size:2rem;
    font-weight:700;

}

.booking-alert  h3{

    font-family:var(--font-body);
    font-size:1.15rem;
    font-weight:500;

    margin-bottom:12px;

}

.booking-error  h3{

    color: var(--color-text);

    font-size:.95rem;
    font-weight:400;

}

.booking-alert p{

    color:var(--color-text-light);

    margin-bottom:10px;

}

.booking-alert ul{

    margin:0;

    font-family:var(--font-body);
    font-size:.85rem;
    

}

.booking-alert li{

    margin-bottom:3px;

}

.booking-error{

    border:1px solid #f3b7b7;

    background:#fff4f4;
    color:#8f1f1f;

}

.booking-alert .btn{

    margin:12px auto;

}

/* ==================================================================
   INDIVIDUAL ROOM PAGES, CONFERENCE HALLS, RESTAURANT  AND ABOUT
===================================================================== */


/* ==================================================
   01. ROOM DETAILS
================================================== */

.room-details,
.conference-details,
.restaurant-details,
.about-details {

    padding:70px 0;

    background:var(--color-white);

}

.room-details .container,
.conference-details .container,
.restaurant-details .container,
.about-details .container{

    padding-inline:70px;

}

/* ==================================================
   02. GRID
================================================== */

.room-details-grid,
.conference-details-grid,
.restaurant-details-grid,
.about-details-grid{

    display:grid;
    grid-template-columns:
        minmax(520px,1fr)
        minmax(320px,400px);   

    gap:80px;

    justify-content: center;
    align-items:start;

}

.about-details-grid{

    grid-template-columns:
        minmax(520px,1fr)
        minmax(400px,480px); 

}

.about-details-grid .section-text{

    font-size: .98rem;
    line-height: 1.6;

    color:var(--color-text-light);
    
    margin-bottom:8px;
}

/* ==================================================
   DESCRIPTION
================================================== */

.room-description,
.conference-description,
.restaurant-description,
.about-description {

    max-width: 800px;

}


/* ==================================================
   03. ROOM POLICIES
================================================== */

.policy-grid,
.conference-halls-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin-bottom:40px;
}

.restaurant-hours-grid{

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;

    margin-bottom:40px;

    
}

.room-policies-title,
.conference-section-title,
.restaurant-section-title, 
.about-section-title{

    font-family:var(--font-heading);
    font-size:1.35rem;
    font-weight:500;
    color:var(--color-heading);

    margin-bottom:12px;
}

.room-policies-list,
.conference-hall-card-list,
.restaurant-hours-card-list{

    display: grid;
    line-height: 1.7;/*gap:10px;*/

    font-size:1rem;
    color: var(--color-text-light);

    list-style:disc inside;    

    padding:0;
    
}

.policy-section,
.conference-contact,
.restaurant-contact {
    margin-bottom:16px;
}


.room-policies-description,
.conference-contact-description,
.restaurant-contact-description{

    line-height: 1.7;
}

.about-section-text{

    line-height: 1.7;
    margin-bottom:10px;
}



/* ==================================================
   04. SUMMARY
================================================== */

.room-summary,
.conference-summary,
.restaurant-summary{

    background:#f8f5f1;

    padding:35px;

    border:1px solid rgba(0,0,0,.08);

}

/* ==================================================
   05. PRICE
================================================== */

.room-summary-price,
.conference-summary-price,
.restaurant-summary-price{

    display:flex;
    align-items:flex-end;

    gap:8px;

    margin-bottom:35px;

}

.room-summary-price .price-label,
.conference-summary-price .price-label,
.restaurant-summary-price .price-label{

    letter-spacing:.18em;
}

.room-summary-price .price-value,
.conference-summary-price .price-value,
.restaurant-summary-price .price-value{

    font-size:2.3rem;
    line-height:1;

}

.room-summary-price .price-unit,
.conference-summary-price .price-unit,
.restaurant-summary-price .price-unit{

    letter-spacing:.18em;
    text-transform:uppercase;

}

/* ==================================================
   06. META
================================================== */

.room-summary-meta{

    display:flex;
    flex-wrap:wrap;

    gap:16px;

    font-size:.92rem;
    color:var(--color-text-light);

    margin-bottom:35px;

}

.room-summary-meta .room-meta-item{

    display:flex;
    align-items:center;
    gap:8px;

}

/* ==================================================
   07. AMENITIES
================================================== */

.room-summary-amenities,
.conference-summary-features,
.restaurant-summary-features {

    padding-top:35px;
    border-top:1px solid rgba(0,0,0,.08);

}

.room-summary-amenities h3,
.conference-summary-features h3,
.restaurant-summary-features h3{

    font-size:1.35rem;
    font-weight:500;

    /*text-align: center;*/

    margin-bottom:22px;

}

.room-summary-amenities ul,
.conference-summary-features ul,
.restaurant-summary-features ul{

    display:grid;
    gap:14px;
    list-style:none;

    font-size:.95rem;
    color:var(--color-text-light);

    padding:0;
    margin:0;

}

.room-summary-amenities li,
.conference-summary-features li,
.restaurant-summary-features li{

    display:flex;
    flex-flow: wrap;

    align-items:center;

    gap:20px;

}

/* ==================================================
   08. BOOK BUTTON
================================================== */

.room-summary .btn{

    width:100%;

    margin-top:40px;

}


.conference-enquiries,
.restaurant-enquiries, 
.enquiries-item {

    margin-top: 10px;

    display:flex;
    flex-flow: wrap;

    justify-content: center;
    align-items:center;

    gap:15px;

}

.enquiries-item{

    border:1px solid rgba(0,0,0,.08);

    font-size: .95rem;

    color: var(--color-dark);
    background:whitesmoke;

    padding:10px 15px;    

    gap:10px;

}


.enquiries-item .svg-icon{

    width: 18px;
    height: 18px;

}

.enquiries-item a {

    text-decoration: none;
    color: var(--color-dark);   

}


/* ==================================================
   09. STICKY
================================================== */

.room-summary, 
.conference-summary,
.restaurant-summary{

    position:sticky;

    top:110px;

}



/* ==================================================
   10. ROOM GALLERY
================================================== */

.room-gallery,
.conference-gallery,
.restaurant-gallery {

    padding:70px 0;
    background:#f6f1eb;

}


.about-gallery {

    padding:70px 0;
    background:var(--color-white);

}

.room-gallery .container,
.conference-gallery .container,
.restaurant-gallery .container,
.about-gallery .container {

    padding-inline:70px;

}

.room-gallery .section-header,
.conference-gallery .section-header,
.restaurant-gallery .section-header,
.about-gallery .section-header  {

    margin-bottom:40px;
}



/* ==================================================
   11. GALLERY LAYOUT
================================================== */

.gallery{

    position:relative;

    margin-top:50px;

}


.gallery-viewport{

    overflow:hidden;

}

.gallery-track{

    display:flex;
    gap:30px;

    transition:transform .6s ease;
    will-change:transform;

}



/* ==================================================
   12. GALLERY SLIDES
================================================== */

.gallery-slide{

    position:relative;

    flex:0 0 calc((100% - 60px) / 3);

    overflow:hidden;

    cursor:pointer;

}

.gallery-slide img{

    display:block;

    width:100%;

    height: 360px; /*aspect-ratio:4 / 3;*/

    object-fit:cover;

    transition:
        transform 1s ease,
        filter 1s ease;

}

/* ==================================================
   13. GALLERY NAVIGATION
================================================== */

.gallery-prev,
.gallery-next{

    position:absolute;

    top:50%;
    transform:translateY(-50%);

    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.92);
    color:var(--color-heading);

    cursor:pointer;

    opacity:0;

    transition:
        background .6s ease,
        color .6s ease,
        opacity .6s ease;

}

.gallery-prev{

    left:20px;

}

.gallery-next{

    right:20px;

}


/* ==================================================
   14. GALLERY INDICATORS
================================================== */

.gallery-dots{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:12px;

    margin-top:35px;

}

.gallery-dot{

    width:7px;
    height:7px;

    border:none;
    border-radius:50%;

    background:#c7c7c7;

    cursor:pointer;

    transition:
        transform .35s ease,
        background .35s ease;

}

.gallery-dot.active{

    background:var(--color-primary);

    transform:scale(1.3);

}


/* ==================================================
   15. HOVER EFFECTS
================================================== */

.gallery-slide::after{

    content:'';

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.05);

    opacity:0;

    transition:opacity 1s ease;

}

.gallery:hover .gallery-prev,
.gallery:hover .gallery-next{

    opacity:1;

}

.gallery-slide:hover img{

    transform:scale(1.06);

}

.gallery-slide:hover::after{

    opacity:1;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:var(--color-accent);
    color:var(--color-white);

}

.gallery-dot:hover{

    transform:scale(1.2);

}



/* ==================================================
   16. LIGHTBOX
================================================== */

.gallery-lightbox{

    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px;

    visibility:hidden;
    opacity:0;

    transition:
        opacity .35s ease,
        visibility .35s ease;

    z-index:3000;

}


/* ==================================================
   17. LIGHTBOX OPEN
================================================== */

.gallery-lightbox.is-open{

    visibility:visible;
    opacity:1;

}


/* ==================================================
   18. OVERLAY
================================================== */

.gallery-lightbox-overlay{

    position:absolute;
    inset:0;

    background:rgba(15,15,15,.92);

    backdrop-filter:blur(2px);

}


/* ==================================================
   19. DIALOG
================================================== */

.gallery-lightbox-dialog{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    max-width:1100px;
    max-height:90vh;

    z-index:2;

}


/* ==================================================
   20. IMAGE
================================================== */

.gallery-lightbox-figure{

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0;

}

.gallery-lightbox-image{

    display:block;

    max-width:100%;
    max-height:80vh;

    width:auto;
    height:auto;

    object-fit:contain;

    border-radius:6px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.45);

}


/* ==================================================
   21. CONTROLS
================================================== */

.gallery-lightbox-prev,
.gallery-lightbox-next,
.gallery-lightbox-close{

    position:absolute;

    display:flex;
    justify-content:center;
    align-items:center;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.12);
    color:var(--color-white);

    cursor:pointer;

    transition:
        background .25s ease,
        transform .25s ease;

}


/* Hover */

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-close:hover{

    background:rgba(255,255,255,.22);

    transform:scale(1.08);

}


/* ==================================================
   22. CLOSE
================================================== */

.gallery-lightbox-close{

    top:-20px;
    right:0;

}


/* ==================================================
   23. PREVIOUS
================================================== */

.gallery-lightbox-prev{

    left:-50px;

}


/* ==================================================
   24. NEXT
================================================== */

.gallery-lightbox-next{

    right:-50px;

}




/* ==================================================
   25. COUNTER
================================================== */

.gallery-lightbox-counter{

    position:absolute;

    left:50%;
    bottom:-55px;

    transform:translateX(-50%);

    padding:8px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    font-size:.9rem;

    letter-spacing:.08em;

    color:var(--color-white);

}



/* ==================================================
   26. MAGNIFIER
================================================== */

.gallery-zoom{

    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.28);

    opacity:0;

    transition:opacity .6s ease;

    pointer-events:none;

}


.gallery-slide:hover .gallery-zoom{

    opacity:1;

}


.gallery-zoom svg{

    width:34px;
    height:34px;

    color:var(--color-white);

    transform:scale(.85);

    transition:transform .6s ease;

}


.gallery-slide:hover .gallery-zoom svg{

    transform:scale(1);

}



/* ==================================================
   11. RESTAURANT MENU
================================================== */

.restaurant-menu{

    margin-top:70px;

    padding: 40px 0;

    border-top:1px solid rgba(0,0,0,.08);

        

}

.restaurant-menu-header{

    text-align: center;

}

.restaurant-menu-header .restaurant-section-title{

    font-size:1.85rem;
    font-weight:500;    

    margin-bottom:12px;

}

/*.restaurant-section-description{

    max-width:700px;

    line-height:1.8;

    color:var(--color-text-light);

}*/



/* ==================================================
   12. MENU TABS
================================================== */

.restaurant-menu-tabs{

    display:flex;
    flex-wrap:wrap;

    justify-content: center;

    gap:6px 12px;

    margin:40px 0 20px;

}

.menu-tab{

    background:none;

    border:none;
    border-bottom:2px solid transparent;

    padding:10px 2px;

    font:inherit;
    font-size:.95rem;
    font-weight:500;

    color:var(--color-text-light);

    cursor:pointer;

    transition:
        color .35s ease,
        border-color .35s ease;

}

.menu-tab:hover{

    color:var(--color-heading);

}

.menu-tab.active{

    color:var(--color-heading);

    border-color:var(--color-primary);

}




/* ==================================================
   13. MENU PANELS
================================================== */

.restaurant-menu-panels{

    position:relative;

}

.menu-panel{



    display:grid;
    grid-template-columns:
        minmax(480px,520px)
        minmax(480px,520px);   

    gap:0 80px;

    justify-content: center;
    align-items:start;


    opacity:0;

    transform:translateY(12px);

    transition:
        opacity .35s ease,
        transform .35s ease;

}

.menu-panel[hidden]{

    display:none;

}

.menu-panel.active{

    opacity:1;

    transform:translateY(0);

}



/* ==================================================
   14. MENU ITEMS
================================================== */

.menu-item{

    padding:10px 0 20px;

    border-bottom:1px solid rgba(0,0,0,.08);

}



.menu-item-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:8px;

}


.menu-item-name{

    font-family:var(--font-heading);

    font-size:1rem;
    font-weight:500;

    color:var(--color-heading);

    margin:0;

}


.menu-item-price{

    flex-shrink:0;

    font-size:1rem;
    font-weight:600;

    color:var(--color-primary);

}


.menu-item-description{

    font-size:.95rem;

    line-height:1.6;

    color:var(--color-text-light);

    margin:0;

}


/* ==================================================
   14. ABOUT STORY IMAGES
================================================== */

.about-summary {
    padding-top: 100px;
}
.story-images {

    position: relative;
    width: 100%;
    height: 420px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);    

    transition:
        box-shadow .35s ease;

}

.story-image {

    position: absolute;
    inset: 0;
    margin: 0;
    
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: fade 18s infinite linear;
}

.story-image img {

    display: block;

    width: 100%;
    height: 100%;
    
    object-fit: cover;

    transition:transform .6s ease;

}

.story-images:hover{

    box-shadow:
        0 28px 65px rgba(0,0,0,.18);

}

.story-images:hover img{

    transform:scale(1.05);

}

.image-primary {
    animation-delay: 0s;
}

.image-secondary {
    animation-delay: -9s; /* Half of 18s */
}

@keyframes fade {
    0%, 35% { opacity: 1; }

    55% { opacity: 0; }

    55%, 85% { opacity: 0; }

    100% { opacity: 1; }
}


@media (prefers-reduced-motion: reduce) {
    .story-image {
        animation: none;
    }

    .image-secondary {
        display: none;
    }
}



/* ==================================================
   NEWS PAGE
================================================== */

.news-page{

    padding:70px 0;
    background:var(--color-white);

}

.news-page .container{

    padding-inline:100px;

}


/* ==================================================
   NEWS WRAPPER
================================================== */

.news-wrapper{

    display:flex;
    flex-direction:column;
    gap:80px;

}


/* ==================================================
   NEWS ARTICLE
================================================== */

.news-article{

    display:grid;
    gap:40px;

    max-width: 800px;
    margin-inline: auto;

}


/* ==================================================
   NEWS IMAGE
================================================== */

.news-page-image{

    overflow:hidden;
    border-radius:10px;

}

.news-page-image img{

    display:block;

    width:100%;
    max-height: 400px; /*height:auto;*/

    transition:transform .6s ease;

}

.news-article:hover .news-page-image img{

    transform:scale(1.03);

}


/* ==================================================
   NEWS CONTENT
================================================== */

.news-page-content{

    max-width:800px;

}


/* ==================================================
   NEWS HEADER
================================================== */

.news-header{

    margin-bottom:16px;

}

.news-meta{

    display:flex;
    flex-wrap:wrap;
    align-items:center;

    gap:20px;

    margin-bottom:18px;

}

.news-page-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:7px 14px;

    border-radius:5px;

    background:var(--color-primary);
    color:var(--color-white);

    font-size:.80rem;
    font-weight:600;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.news-page-label{

    font-size:.88rem;
    font-weight:500;

    color:var(--color-heading);

    letter-spacing:.06em;

    text-transform:uppercase;

}

.news-meta time{

    /*margin-left:auto;*/

    color:var(--color-text-light);

    font-size:.92rem;

}


/* ==================================================
   TITLE
================================================== */

.news-page-title{

    font-family:var(--font-heading);
    font-size:1.8rem;
    font-weight:500;
    line-height:1.25;

    color:var(--color-heading);

    margin:0;

}


/* ==================================================
   SUMMARY
================================================== */

.news-summary{

    margin-bottom:12px;

}

.news-summary .section-text {

    color:var(--color-text-light);
    margin:0;

}


/* ==================================================
   FULL CONTENT
================================================== */

.news-full-content{

    display:grid;

    gap:10px;

    overflow:hidden;

    max-height:0;

    opacity:0;

    transition:

        max-height 1s ease,
        opacity 1s ease;

}

.news-full-content.expanded{

    opacity:1;
    max-height:2500px;

}

.news-full-content .section-text {

    color:var(--color-text-light);

    margin:0;

}



/* ==================================================
   READ MORE
================================================== */

.read-more-toggle{

    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:12px;
    padding:0;

    border:none;
    background:none;

    font:inherit;
    font-size:.95rem;
    font-weight:600;

    color:var(--color-primary);

    cursor:pointer;

    transition:
        color .35s ease,
        gap .35s ease;

}

.read-more-toggle:hover{

    gap:12px;

}

.read-more-toggle .svg-icon{

    width: 22px;
    height: 22px;

    transition:transform .35s ease;

}


.news-article.expanded
.read-more-toggle .svg-icon{

    transform:rotate(180deg);

}