/*
Theme Name:  Jampaa
Theme URI: https://www.jampaa.it/
Description:  Tema Jampaa
Author:  Jampaa
Author URI: https://www.jampaa.it/
Template:  hello-elementor
Version:  1.0.1

--------------------------------------------------------------
>>> INDICE STILI (RIORGANIZZATO)
--------------------------------------------------------------
1. Root & Design Tokens
2. Settings & Base Typography
3. Global Layout & Utilities
4. Componenti Globali (404, Room Occupancy)
5. Tabella Comparatore Camere
6. Utilities Elementor & Extra
--------------------------------------------------------------
*/


/*
*	1.0 ROOT & DESIGN TOKENS
*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700&display=swap');

:root {
    /* Font family */
    --font-family-primary: 'Plus Jakarta Sans', sans-serif;
    --font-family-secondary: 'Plus Jakarta Sans', sans-serif;
    --font-family-menu: 'Plus Jakarta Sans', sans-serif;
    --font-family-buttons: 'Plus Jakarta Sans', sans-serif;

    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-primary: #D28657;
    --color-secondary: #EAE5E1;
    --color-tertiary: #0B4D45;
    --color-menu: #0B4D45;

    /* CTA states */
    --color-primary-hover: #B5784E;
    --color-secondary-hover: #C97E50;

    /* H1 */
    --colore-h1: #000000;
    --font-size-h1: 70px;
    --font-weight-h1: 400;

    /* H2 */
    --colore-h2: #000000;
    --font-size-h2: 36px;
    --font-weight-h2: 400;

    /* H3 */
    --colore-h3: #000000;
    --font-size-h3: 28px;
    --font-weight-h3: 400;

    /* H4 */
    --colore-h4: #000000;
    --font-size-h4: 24px;
    --font-weight-h4: 400;

    /* Paragraphs */
    --colore-p: #000000;

    --font-size-p-l: 18px;
    --font-weight-p-l: 400;
    --line-height-p-l: 28px;

    --font-size-p-r: 16px;
    --font-weight-p-r: 700;
    --line-height-p-r: 24px;

    --font-size-p-s: 14px;
    --font-weight-p-s: 400;
    --line-height-p-s: 20px;

    --font-size-p-xs: 14px;
    --font-weight-p-xs: 400;
    --line-height-p-xs: 20px;

    /* Span */
    --colore-span: #000000;
    --font-size-span: 16px;
    --font-weight-span: 400;

    /* Link */
    --colore-a: var(--color-primary);
    --font-size-a: 16px;
    --font-weight-a: 700;

    /* Menu Desktop */
    --colore-voce-menu: var(--color-menu);
    --font-size-menu: 16px;
    --font-weight-menu: 700;

    /* Pulsanti */
    --colore-button-primary: var(--color-primary);
    --colore-button-primary-hover: var(--color-primary-hover);
    --colore-button-primary-text: var(--color-white);

    --colore-button-secondary: transparent;
    --colore-button-secondary-text: var(--color-primary);
    --colore-button-secondary-border: var(--color-primary);
    --colore-button-secondary-hover-text: var(--color-secondary-hover);
    --colore-button-secondary-hover-border: var(--color-secondary-hover);

    --font-button: 16px;
    --font-weight-button: 700;
    --line-height-button: 24px;
}


/*
*	2.0 SETTINGS & BASE TYPOGRAPHY
*/

h1 {
    font-family: var(--font-family-primary) !important;
    font-size: var(--font-size-h1) !important;
    font-weight: var(--font-weight-h1) !important;
    line-height: normal !important;
    color: var(--colore-h1) !important;
}

h2 {
    font-family: var(--font-family-primary) !important;
    font-size: var(--font-size-h2) !important;
    font-weight: var(--font-weight-h2) !important;
    line-height: normal !important;
    color: var(--colore-h2) !important;
}

h3 {
    font-family: var(--font-family-primary) !important;
    font-size: var(--font-size-h3) !important;
    font-weight: var(--font-weight-h3) !important;
    line-height: normal !important;
    color: var(--colore-h3) !important;
}

h4 {
    font-family: var(--font-family-primary) !important;
    font-size: var(--font-size-h4) !important;
    font-weight: var(--font-weight-h4) !important;
    line-height: normal !important;
    color: var(--colore-h4) !important;
}

p {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-l) !important;
    font-weight: var(--font-weight-p-l) !important;
    line-height: var(--line-height-p-l) !important;
    color: var(--colore-p) !important;
}

p.paragraph-l {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-l) !important;
    font-weight: var(--font-weight-p-l) !important;
    line-height: var(--line-height-p-l) !important;
    color: var(--colore-p) !important;
}

p.paragraph-r {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-r) !important;
    font-weight: var(--font-weight-p-r) !important;
    line-height: var(--line-height-p-r) !important;
    color: var(--colore-p) !important;
}

p.paragraph-s {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-s) !important;
    font-weight: var(--font-weight-p-s) !important;
    line-height: var(--line-height-p-s) !important;
    color: var(--colore-p) !important;
}

p.paragraph-xs {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-xs) !important;
    font-weight: var(--font-weight-p-xs) !important;
    line-height: var(--line-height-p-xs) !important;
    color: var(--colore-p) !important;
}

span {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-span) !important;
    font-weight: var(--font-weight-span) !important;
    line-height: 24px !important;
    color: var(--colore-span) !important;
}

a {
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-a) !important;
    font-weight: var(--font-weight-a) !important;
    line-height: 24px !important;
    color: var(--colore-a) !important;
    text-decoration: none !important;
}

#menu-principale a {
    font-family: var(--font-family-menu) !important;
    font-size: var(--font-size-menu) !important;
    font-weight: var(--font-weight-menu) !important;
    line-height: 24px !important;
    color: var(--colore-voce-menu) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    background: transparent !important;
}

p.iubenda-cs-preferences-link {
    margin: 0px;
    font-family: var(--font-family-secondary) !important;
    font-size: var(--font-size-p-l) !important;
    font-weight: var(--font-weight-p-l) !important;
    line-height: var(--line-height-p-l) !important;
    color: var(--colore-a) !important;
}


/*
*	3.0 GLOBAL LAYOUT & UTILITIES
*/

div.full-width-box {
    max-width: 1920px !important;
    margin: auto !important;
}

div#container-menu a {
    color: white !important;
}

.button-brown a {
    background-color: #D28657 !important;
    fill: #FFFFFF !important;
    border-radius: 0px;
    color: white !important;
}

.button-brown a:hover {
    background-color: #B5784E !important;
    fill: #FFFFFF !important;
    color: white !important;
}

.button-brown a span {
    color: white !important;
    font-weight: 600 !important;
}

.button-brown a:hover span {
    color: #fff !important;
}


/*
*	4.0 COMPONENTI GLOBALI
*/

/* Hero Image pagina 404 */
.error404 .hero-image {
    display: none;
}

/* Room Occupancy List */
ul.room-occupancy-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 5px;
}

ul.room-occupancy-list li {
    display: list-item;
    padding-left: 10px;
}

ul.room-occupancy-list li:not(:first-child) {
    border-left: 1px solid #DCDFE5;
}


/*
*	5.0 TABELLA COMPARATORE CAMERE
*/

.compare-wrap {
    margin-top: 32px;
}

.compare-scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.compare-scroller::-webkit-scrollbar {
    height: 8px;
}
.compare-scroller::-webkit-scrollbar-track {
    background: #f2f2f2;
    border-radius: 4px;
}
.compare-scroller::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 4px;
}

.table.camere {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 860px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.table.camere thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #fff;
    color: #222;
    font-weight: 700;
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.table.camere tbody td:first-child,
.table.camere thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 4;
    background-color: #fff!important;
    box-shadow: 1px 0 0 #eee;
    min-width: 180px;
    max-width: 200px;
    white-space: nowrap;
}

.table.camere td {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    text-align: left;
}

.table.camere thead th:not(:first-child),
.table.camere tbody td:not(:first-child) {
    min-width: 120px;
    text-align: center;
}

.table.camere td img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.table.camere tbody tr:nth-child(odd) td {
    background-color: #fafafa!important;
}

.table.camere a.button,
.table.camere a.button-small {
    display: inline-block;
    padding: 10px 18px;
    background: #BC1548;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s ease;
}


/*
*	6.0 UTILITIES ELEMENTOR & EXTRA
*/

.elementor-widget-container {
    word-break: break-word;
}