@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --bordeaux: #6f1020;
    --bordeaux-scuro: #420914;
    --oro: #c7a24d;
    --avorio: #f7f1e7;
    --testo-scuro: #241a1c;
    --bianco: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--avorio);
    color: var(--testo-scuro);
}

    /* ======================================
       FOTO RECENSIONE
    ====================================== */

    .client-review-photo-group {
        margin-top: 28px;
    }

    .client-review-photo-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 7px;
        font-size: 17px;
        font-weight: 700;
        color: #251718;
    }

    .client-review-photo-title span {
        display: inline-flex;
        align-items: center;
        padding: 4px 9px;
        border-radius: 20px;
        background: #f5f0e8;
        color: #8a7969;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .client-review-photo-description {
        margin: 0 0 15px;
        color: #786d67;
        font-size: 14px;
        line-height: 1.5;
    }


    /* BOX CARICAMENTO */

    .client-review-photo-upload {
        width: 100%;
        min-height: 105px;
        box-sizing: border-box;

        display: flex;
        align-items: center;
        gap: 16px;

        padding: 18px 20px;
        cursor: pointer;

        transition:
            border-color .2s ease,
            background .2s ease,
            transform .2s ease,
            box-shadow .2s ease;
    }

    .client-review-photo-upload:hover {
        border-color: #820d23;
        background: #fffaf7;

        box-shadow:
            0 8px 25px rgba(83, 42, 30, .07);
    }


    /* ICONA */

    .client-review-photo-upload-icon {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: #f4ebe2;
        color: #820d23;

        font-size: 21px;
    }


    /* TESTO */

    .client-review-photo-upload-text {
        display: flex;
        flex-direction: column;
        gap: 4px;

        flex: 1;
    }

    .client-review-photo-upload-text strong {
        color: #251718;
        font-size: 15px;
        font-weight: 700;
    }

    .client-review-photo-upload-text span {
        color: #8a7d76;
        font-size: 13px;
    }


    /* PULSANTE SELEZIONA */

    .client-review-photo-upload-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 10px 15px;

        border-radius: 8px;

        background: #820d23;
        color: white;

        font-size: 13px;
        font-weight: 700;

        white-space: nowrap;
    }
/* CONTENITORE COMPLETO FOTO */

.client-review-photo-box {
    width: 100%;
    box-sizing: border-box;

    padding: 20px;

    border: 1.5px dashed #b88a72;
    border-radius: 16px;

    background: #fdfaf6;

    transition: 0.2s ease;
}

.client-review-photo-box:hover {
    border-color: #820d23;
}


/* PARTE SUPERIORE */

.client-review-photo-upload {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 0;

    border: none;
    background: transparent;

    cursor: pointer;
}


/* ANTEPRIME DENTRO IL RIQUADRO */

.client-review-photo-preview {
    display: grid;

    grid-template-columns:
        repeat(3, 120px);

    gap: 14px;

    margin-top: 18px;
}


/* SE NON CI SONO FOTO
   NON OCCUPA SPAZIO */

.client-review-photo-preview:empty {
    display: none;
}


/* SINGOLA FOTO */

.client-review-photo-preview-item {
    position: relative;

    width: 120px;
    height: 120px;

    border-radius: 13px;

    overflow: hidden;

    background: #eee;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.10);
}

.client-review-photo-preview-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 13px;
}


/* X PER ELIMINARE */

.client-review-photo-remove {
    position: absolute;

    top: 7px;
    right: 7px;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(32, 32, 32, 0.85);
    color: #ffffff;

    cursor: pointer;

    transition: 0.2s ease;
}

.client-review-photo-remove:hover {
    background: #820d23;
}


/* MOBILE */

@media (max-width: 600px) {

    .client-review-photo-box {
        padding: 16px;
    }

    .client-review-photo-upload {
        flex-wrap: wrap;
    }

    .client-review-photo-upload-button {
        width: 100%;
        box-sizing: border-box;
    }

    .client-review-photo-preview {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;
    }

    .client-review-photo-preview-item {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

}

/* ======================================
   ANTEPRIMA FOTO
====================================== */

.client-review-photo-preview {
    display: grid;
    grid-template-columns: repeat(3, 105px);
    gap: 12px;
    margin-top: 14px;
}

.client-review-photo-preview-item {
    position: relative;
    width: 105px;
    height: 105px;
}

.client-review-photo-preview-item img {
    width: 105px;
    height: 105px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.client-review-photo-remove {
    position: absolute;
    top: 6px;
    right: 6px;

    width: 26px;
    height: 26px;

    border: none;
    border-radius: 50%;

    background: rgba(20, 20, 20, 0.8);
    color: white;

    cursor: pointer;
}


/* ======================================
   MOBILE
====================================== */

@media (max-width: 600px) {

    .client-review-photo-upload {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .client-review-photo-upload-button {
        width: 100%;
        box-sizing: border-box;
    }

}

/* HEADER */

.main-header {
    min-height: 150px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    padding: 18px 5%;
    background-color: var(--avorio);
    border-bottom: 1px solid rgba(111, 16, 32, 0.15);
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-logo img {
    width: 135px;
    height: 110px;
    object-fit: contain;
}

.header-title {
    text-align: center;
    color: var(--bordeaux-scuro);
}

.small-title {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--oro);
}

.header-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 700;
    line-height: 0.95;
}

.subtitle {
    margin-top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--bordeaux);
}

.header-actions {
    display: flex;
    justify-content: flex-end;
}

.login-button {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--bordeaux);
    color: var(--bordeaux);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.login-button:hover {
    background-color: var(--bordeaux);
    color: var(--bianco);
}

/* MENU */

.main-nav {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    padding: 10px 5%;
    background-color: var(--bordeaux-scuro);
    border-bottom: 3px solid var(--oro);
}

.main-nav a {
    position: relative;
    color: var(--avorio);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    transition: 0.3s;
}

.main-nav a:not(.booking-link)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: var(--oro);
    transition: width 0.3s;
}

.main-nav a:not(.booking-link):hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--oro);
}

.booking-link {
    padding: 11px 22px;
    background-color: var(--oro);
    color: var(--bordeaux-scuro) !important;
    font-weight: 600 !important;
}

.booking-link:hover {
    background-color: var(--avorio);
}

/* TABLET E TELEFONO */

@media (max-width: 850px) {
    .main-header {
        grid-template-columns: 100px 1fr 100px;
        min-height: 125px;
        padding: 14px 3%;
    }

    .header-logo img {
        width: 90px;
        height: 80px;
    }

    .header-title h1 {
        font-size: 38px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 16px;
    }

    .login-button {
        padding: 9px 14px;
        font-size: 11px;
    }

    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .main-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .header-logo img {
        width: 100px;
        height: 85px;
    }

    .header-title h1 {
        font-size: 35px;
    }

    .header-actions {
        justify-content: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
}

/* ===========================
   HERO SLIDER
=========================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #111;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide.active img {
    animation: heroZoom 4.2s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 5%;
    text-align: center;
    color: var(--bianco);
    background: rgba(0, 0, 0, 0.38);
}

.hero-overlay h2 {
    max-width: 900px;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 82px);
    line-height: 1.03;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.hero-overlay p {
    max-width: 850px;
    margin-bottom: 35px;
    font-size: clamp(18px, 2.4vw, 28px);
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-button {
    display: inline-block;
    padding: 17px 42px;
    border: 2px solid var(--oro);
    background-color: var(--oro);
    color: var(--bordeaux-scuro);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.7px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.hero-button:hover {
    background-color: var(--bordeaux);
    color: var(--bianco);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 520px;
    }

    .hero-overlay {
        padding: 25px 20px;
    }

    .hero-overlay h2 {
        font-size: 48px;
    }

    .hero-overlay p {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .hero-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide,
    .slide img,
    .hero-button {
        animation: none !important;
        transition: none !important;
    }
}
/* ===========================
   CHI SIAMO
=========================== */

.about-section{
    background:#f7f1e7;
    padding:90px 20px;
    text-align:center;
}

.about-content{
    max-width:900px;
    margin:auto;
}

.about-small-title{
    color:#caa44d;
    letter-spacing:4px;
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.about-section h2{
    font-size:48px;
    color:#5b0715;
    margin-bottom:20px;
    font-family:Georgia, serif;
}

.about-divider{
    width:90px;
    height:3px;
    background:#caa44d;
    margin:25px auto 40px auto;
}

.about-text{
    font-size:20px;
    line-height:1.9;
    color:#444;
    margin-bottom:25px;
}

.about-button{
    display:inline-block;
    margin-top:25px;
    background:#5b0715;
    color:white;
    text-decoration:none;
    padding:18px 45px;
    border-radius:3px;
    font-weight:bold;
    letter-spacing:2px;
    transition:.3s;
}

.about-button:hover{
    background:#caa44d;
    color:#5b0715;
}
/* ===========================
   MIGLIORAMENTI CHI SIAMO
=========================== */

.about-section {
    background: #f7f1e7;
    padding: 100px 24px;
    text-align: center;
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
}

.about-small-title {
    color: #caa44d;
    letter-spacing: 6px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-section h2 {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1.15;
    color: #650717;
    margin: 0 0 24px;
}

.about-divider {
    width: 112px;
    height: 3px;
    background: #caa44d;
    margin: 30px auto 50px;
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2f3540;
    margin: 0 0 26px;
}

.about-button {
    display: inline-block;
    margin-top: 22px;
    background: #650717;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(101, 7, 23, 0.15);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-button:hover {
    background: #caa44d;
    color: #650717;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(101, 7, 23, 0.2);
}

.about-quote {
    margin-top: 34px;
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: #b18a32;
}

/* Adattamento per smartphone */
@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px;
    }

    .about-section h2 {
        font-size: 38px;
    }

    .about-divider {
        margin-bottom: 36px;
    }

    .about-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .about-button {
        padding: 16px 34px;
        font-size: 14px;
    }

    .about-quote {
        font-size: 16px;
    }
}
/* ===========================
   NUOVA STAGIONE
=========================== */

.season-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(74, 4, 18, 0.96),
            rgba(74, 4, 18, 0.96)
        );
    padding: 110px 24px;
    text-align: center;
    border-top: 3px solid #caa44d;
    border-bottom: 3px solid #caa44d;
}

.season-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.season-small-title {
    margin: 0 0 20px;
    color: #d4ad52;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5px;
}

.season-section h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1.2;
}

.season-divider {
    width: 110px;
    height: 3px;
    margin: 32px auto 42px;
    background: #d4ad52;
}

.season-text {
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
}

.season-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 42px;
    border: 2px solid #d4ad52;
    border-radius: 5px;
    background: #d4ad52;
    color: #4a0412;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.season-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .season-section {
        padding: 75px 20px;
    }

    .season-small-title {
        font-size: 12px;
        line-height: 1.7;
    }

    .season-section h2 {
        font-size: 38px;
    }

    .season-text {
        font-size: 18px;
        line-height: 1.7;
    }

    .season-button {
        padding: 16px 28px;
        font-size: 13px;
    }
}
/*==========================
ULTIMI SPETTACOLI
==========================*/

.shows-section{

    padding:110px 8%;

    background:#f8f5ef;

}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-subtitle{

    color:#b58d35;

    letter-spacing:4px;

    font-weight:bold;

}

.shows-section h2{

    font-size:46px;

    color:#5b0015;

    margin-top:10px;

}

.section-description{

    max-width:700px;

    margin:25px auto 70px;

    color:#555;

    font-size:18px;

    line-height:1.7;

    text-align:center;

}

.shows-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

}

.show-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.35s;
    
}

.show-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

/* ==========================
   CARD SPETTACOLI
========================== */

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 32px;
    align-items: stretch;
    width: 100%;
}

.show-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(202, 164, 77, 0.35);
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(47, 20, 25, 0.11);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: #caa44d;
    box-shadow: 0 24px 55px rgba(47, 20, 25, 0.19);
}

.show-poster {
    position: relative;

    width: 100%;
    aspect-ratio: 2 / 3;

    overflow: hidden;

    padding: 0;

    background: #f3f0e9;
}

.show-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}

.show-card:hover .show-image {
    transform: scale(1.045);
}

.show-status {
    position: absolute;
    top: 32px;
    left: 30px;
    padding: 9px 14px;
    background: rgba(101, 7, 23, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
}

.show-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}

.show-date {
    margin: 0 0 12px;
    color: #b18a32;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.show-content h3 {
    margin: 0 0 16px;
    color: #650717;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
}

.show-description {
    margin: 0 0 28px;
    color: #55545a;
    font-size: 16px;
    line-height: 1.7;
}

.show-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    color: #650717;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.show-card:hover .show-link {
    gap: 16px;
    color: #b18a32;
}

.show-content{

    padding:30px;

}

.show-content span{

    color:#b58d35;

    font-weight:600;

}

.show-content h3{

    margin:15px 0;

    color:#5b0015;

    font-size:30px;

}

.show-content a{

    display:inline-block;

    margin-top:20px;

    text-decoration:none;

    color:white;

    background:#5b0015;

    padding:14px 28px;

    border-radius:6px;

    transition:.3s;

}

.show-content a:hover{

    background:#b58d35;

}

.shows-button{

    text-align:center;

    margin-top:70px;

}

.shows-button a{

    background:#5b0015;

    color:white;

    padding:18px 45px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    letter-spacing:2px;

}
.show-image {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: contain;
    background: #111;
}
@media (max-width: 1050px) {
    .shows-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {
    .shows-section {
        padding: 75px 20px;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .show-poster {
        height: 460px;
    }

    .show-content {
        padding: 26px;
    }

    .show-content h3 {
        font-size: 27px;
    }
}

@media (max-width: 420px) {
    .show-poster {
        height: 390px;
        padding: 12px;
    }

    .show-status {
        top: 24px;
        left: 22px;
        font-size: 10px;
    }
}
/* CORREZIONE GRIGLIA SPETTACOLI */

.shows-grid {
    width: 100%;
}

.show-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
}

.show-poster {
    width: 100%;
    box-sizing: border-box;
}

.show-content {
    width: 100%;
    box-sizing: border-box;
}

.shows-button {
    display: block;
    width: 100%;
    margin: 60px 0 0;
    text-align: center;
    clear: both;
}
@media (min-width: 1400px) {
    .hero-slider {
        height: 620px;
    }

    .slide img {
        object-position: center 35%;
    }
}

@media (max-width: 700px) {
    .hero-slider {
        height: 500px;
        min-height: 0;
    }
}
/*==========================
RECENSIONI
==========================*/

.reviews-section{
    background:#f8f5ef;
    padding:100px 0;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.review-card{
    background:white;
    padding:40px 35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.stars{
    color:#d4af37;
    font-size:1.6rem;
    margin-bottom:20px;
}

.review-text{
    color:#555;
    line-height:1.8;
    font-style:italic;
    margin-bottom:25px;
}

.review-card h4{
    color:#7a1f1f;
    font-weight:600;
}

@media(max-width:900px){

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

}

/* ======================================
   FOTO RECENSIONI - ADMIN
====================================== */

.admin-review-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    margin: 5px 0 20px;
}

.admin-review-photo {
    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 12px;

    background: #f2eee8;

    border: 1px solid #e7ddd3;
}

.admin-review-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .25s ease;
}

.admin-review-photo:hover img {
    transform: scale(1.05);
}
/* ======================================
   FOTO RECENSIONI HOME
====================================== */

.review-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    width: 100%;
    max-width: 520px;

    margin: 18px auto;

    box-sizing: border-box;
}

.review-photo {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 12px;

    background: #f2eee8;

    box-sizing: border-box;
}

.review-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    max-width: 100%;

    border-radius: 12px;

    transition: transform 0.25s ease;
}

.review-photo:hover img {
    transform: scale(1.04);
}


/* 1 FOTO */

.review-photos:has(.review-photo:only-child) {
    grid-template-columns: minmax(0, 220px);
    justify-content: center;
}


/* 2 FOTO */

.review-photos:has(
    .review-photo:nth-child(2):last-child
) {
    grid-template-columns: repeat(2, minmax(0, 180px));
    justify-content: center;
}


/* MOBILE */

@media (max-width: 600px) {

    .review-photos {
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;

        max-width: 100%;
    }

    .review-photo {
        min-width: 0;
    }

}
/* =========================
   CONTATTI E MAPPA
========================= */

.contact-section {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(450px, 1.2fr);
    margin-top: 55px;
    border: 1px solid rgba(122, 31, 31, 0.15);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.contact-info {
    padding: 55px 50px;
    background: #7a1f1f;
    color: #ffffff;
}

.contact-info h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.25;
    color: #ffffff;
}

.contact-divider {
    width: 65px;
    height: 3px;
    margin: 25px 0 35px;
    background: #d4af37;
}

.contact-item {
      display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 27px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;
    color: #d4af37;
    font-size: 1.05rem;
}

.contact-item h4 {
    margin: 0 0 7px;
    font-size: 0.85rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #d4af37;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.contact-primary-button,
.contact-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 23px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-primary-button {
    background: #d4af37;
    color: #271313;
}

.contact-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.contact-primary-button:hover,
.contact-secondary-button:hover {
    transform: translateY(-3px);
}

.contact-primary-button:hover {
    background: #e4c45c;
}

.contact-secondary-button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact-map {
    min-height: 590px;
    background: #eeeeee;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 590px;
    border: 0;
}

@media (max-width: 900px) {

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

    .contact-info {
        padding: 45px 30px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 500px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-primary-button,
    .contact-secondary-button {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 340px;
    }
}
/* =========================
   FOOTER
========================= */

.main-footer {
    background: #321313;
    color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
    gap: 55px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.footer-logo {
    display: block;
    width: 95px;
    height: 95px;
    margin-bottom: 22px;
    object-fit: contain;
}

.footer-brand h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.45rem;
}

.footer-brand p,
.footer-social p,
.footer-contacts p {
    margin: 0;
    line-height: 1.75;
}

.main-footer h4 {
    margin: 0 0 23px;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-links,
.footer-contacts,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a,
.footer-contacts a,
.footer-social-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a {
    margin-bottom: 12px;
}

.footer-contacts a {
    margin-top: 13px;
}

.footer-links a:hover,
.footer-contacts a:hover,
.footer-social-links a:hover,
.footer-legal a:hover {
    color: #d4af37;
}

.footer-social-links{
    display:flex;
    gap:16px;
    margin-top:20px;
}

.footer-social-links a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,.45);
    border-radius:50%;

    color:#d4af37;
    text-decoration:none;

    font-size:1.2rem;

    transition:.3s ease;
}

.footer-social-links a:hover{
    background:#d4af37;
    color:#7b1f1f;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #271010;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    font-size: 0.8rem;
}

@media (max-width: 1000px) {

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

@media (max-width: 650px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 14px 20px;
    }
}
/* =======================================================
   PAGINA CHI SIAMO - HERO
======================================================= */

.about-hero {
    position: relative;
    min-height: 460px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.52)
        ),
        url("/images/teatro-hero.jpg") center 38% / cover no-repeat;
}

.about-hero-overlay {
    width: 100%;
    padding: 80px 0;
}
.about-hero .container {
    width: min(1180px, 88%);
    margin: 0 auto;
}

.about-hero-subtitle {
    margin-bottom: 18px;

    color: #d4af37;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-hero h1 {
    max-width: 850px;
    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.12;
}

.about-hero-description {
    max-width: 700px;
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 1.15rem;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .about-hero {
        min-height: 380px;
        background-position: center;
    }

    .about-hero-overlay {
        padding: 65px 0;
    }

    .about-hero h1 {
        font-size: 2.35rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }
}
/*====================================================
ABOUT HISTORY
====================================================*/

.about-history{

    padding:90px 0;
    background:#f8f4ec;
}

.about-content{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:start;

    margin-top:45px;
}

.about-text p{

    margin-bottom:22px;

    color:#444;

    font-size:1.08rem;
    line-height:2;
}

.about-highlight{

    background:white;

    padding:35px;

    border-radius:14px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    border-top:5px solid #d4af37;
}

.about-year{

    display:inline-block;

    margin-bottom:20px;

    font-size:2.4rem;

    font-weight:700;

    color:#7b1f1f;
}

.about-highlight h3{

    margin-bottom:15px;

    color:#7b1f1f;
}

.about-highlight p{

    line-height:1.8;
}

@media(max-width:900px){

    .about-content{

        grid-template-columns:1fr;
    }

}
/* ========================================
   CHI SIAMO - HOME
======================================== */

.home-about {
    background: #f7f1e7;
    padding: 60px 24px;
    text-align: center;
}

.home-about .about-content {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.home-about .about-small-title {
    margin: 0 0 18px;
}

.home-about h2 {
    margin: 0 auto 22px;
    line-height: 1.2;
}

.home-about .about-divider {
    width: 140px;
    margin: 0 auto 32px;
}

.home-about .about-text {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 22px;
    line-height: 1.8;
    text-align: center;
}

.home-about .about-button {
    display: inline-block;
    margin-top: 12px;
}

@media (max-width: 768px) {

    .home-about {
        padding: 45px 20px;
    }

    .home-about h2 {
        font-size: 2rem;
    }

    .home-about .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

}
/* ==================================================
   LOGIN AREA GESTIONE
================================================== */

.admin-login-page {
    margin: 0;
    min-height: 100vh;
    background: #f7f1e7;
}

.admin-login-wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 440px;

    background: #ffffff;

    padding: 45px 40px;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);

    text-align: center;
}

.admin-login-logo {
    width: 110px;
    height: auto;

    margin-bottom: 18px;
}

.admin-login-small-title {
    margin: 0 0 8px;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: #b08b3e;
}

.admin-login-card h1 {
    margin: 0 0 12px;

    color: #5b0d16;

    font-size: 2rem;
}

.admin-login-description {
    margin: 0 0 30px;

    color: #666;

    line-height: 1.6;
}


/* ERRORE */

.admin-login-error {
    display: none;

    margin-bottom: 22px;

    padding: 12px 14px;

    border-radius: 8px;

    background: #fce8e8;

    color: #a40000;

    font-size: 0.9rem;
}

.admin-login-error.show {
    display: block;
}


/* FORM */

.admin-login-form {
    text-align: left;
}

.admin-login-form label {
    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: #333;
}

.admin-input-group {
    position: relative;

    margin-bottom: 22px;
}

.admin-input-group i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #7b1f1f;
}

.admin-input-group input {
    width: 100%;

    padding: 14px 15px 14px 44px;

    border: 1px solid #d6d6d6;

    border-radius: 8px;

    font-size: 1rem;

    box-sizing: border-box;

    outline: none;

    transition: 0.2s;
}

.admin-input-group input:focus {
    border-color: #7b1f1f;

    box-shadow: 0 0 0 3px rgba(123, 31, 31, 0.08);
}


/* BOTTONE */

.admin-login-button {
    width: 100%;

    margin-top: 5px;

    padding: 14px 20px;

    border: none;

    border-radius: 8px;

    background: #6f101b;

    color: white;

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition: 0.2s;
}

.admin-login-button:hover {
    background: #8c1825;

    transform: translateY(-1px);
}


/* TORNA AL SITO */

.admin-back-home {
    display: inline-block;

    margin-top: 26px;

    color: #555;

    text-decoration: none;

    font-size: 0.9rem;
}

.admin-back-home:hover {
    color: #7b1f1f;
}


/* MOBILE */

@media (max-width: 520px) {

    .admin-login-card {
        padding: 35px 24px;
    }

    .admin-login-card h1 {
        font-size: 1.7rem;
    }

}
/* ==================================================
   DASHBOARD AMMINISTRATORE
================================================== */

.admin-dashboard-page {
    margin: 0;
    min-height: 100vh;
    background: #f5f1ea;
    color: #292929;
}


/* HEADER */

.admin-dashboard-header {
    min-height: 90px;

    padding: 15px 40px;

    background: #5b0d16;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.admin-dashboard-brand {
    display: flex;
    align-items: center;

    gap: 16px;

    color: white;
}

.admin-dashboard-brand img {
    width: 65px;
    height: 65px;

    object-fit: contain;
}

.admin-dashboard-brand p {
    margin: 0 0 3px;

    font-size: 0.7rem;

    letter-spacing: 2px;

    color: #d9bd72;
}

.admin-dashboard-brand h1 {
    margin: 0;

    font-size: 1.5rem;
}

.admin-dashboard-actions {
    display: flex;

    gap: 12px;
}

.admin-dashboard-actions a {
    padding: 10px 16px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 0.9rem;

    transition: 0.2s;
}

.admin-site-link {
    background: white;

    color: #5b0d16;
}

.admin-site-link:hover {
    background: #f0e7d8;
}

.admin-logout-button {
    border: 1px solid rgba(255, 255, 255, 0.5);

    color: white;
}

.admin-logout-button:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* CONTENUTO */

.admin-dashboard-main {
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    padding: 60px 0 80px;
}

.admin-welcome {
    margin-bottom: 40px;
}

.admin-dashboard-small-title {
    margin: 0 0 10px;

    color: #b08b3e;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.admin-welcome h2 {
    margin: 0 0 12px;

    color: #5b0d16;

    font-size: 2.1rem;
}

.admin-welcome > p:last-child {
    margin: 0;

    color: #666;

    line-height: 1.6;
}


/* CARD */

.admin-dashboard-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-bottom: 55px;
}

.admin-dashboard-card {
    min-height: 190px;

    padding: 30px;

    background: white;

    border-radius: 14px;

    display: flex;

    gap: 25px;

    color: inherit;

    text-decoration: none;

    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.07);

    border: 1px solid rgba(0, 0, 0, 0.04);

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.admin-dashboard-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.11);
}

.admin-card-icon {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7f1e7;

    color: #6f101b;

    font-size: 1.5rem;
}

.admin-card-content h3 {
    margin: 0 0 12px;

    color: #5b0d16;

    font-size: 1.35rem;
}

.admin-card-content p {
    margin: 0 0 20px;

    color: #666;

    line-height: 1.6;
}

.admin-card-content span {
    color: #8a671b;

    font-weight: 700;

    font-size: 0.9rem;
}

.admin-card-content span i {
    margin-left: 6px;
}


/* RIEPILOGO */

.admin-dashboard-status {
    padding-top: 10px;
}

.admin-dashboard-status h2 {
    margin: 0 0 22px;

    color: #5b0d16;
}

.admin-status-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.admin-status-box {
    padding: 24px;

    background: white;

    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.admin-status-box span {
    display: block;

    margin-bottom: 12px;

    color: #666;

    font-size: 0.9rem;
}

.admin-status-box strong {
    color: #5b0d16;

    font-size: 2rem;
}


/* TABLET */

@media (max-width: 900px) {

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

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

}


/* MOBILE */

@media (max-width: 650px) {

    .admin-dashboard-header {
        padding: 15px 20px;

        flex-direction: column;

        align-items: flex-start;
    }

    .admin-dashboard-actions {
        width: 100%;
    }

    .admin-dashboard-actions a {
        flex: 1;

        text-align: center;
    }

    .admin-dashboard-main {
        width: min(100% - 30px, 1200px);

        padding-top: 40px;
    }

    .admin-welcome h2 {
        font-size: 1.7rem;
    }

    .admin-dashboard-card {
        padding: 24px;

        flex-direction: column;
    }

    .admin-status-grid {
        grid-template-columns: 1fr;
    }

}

/* ======================================
   NOTIFICHE DASHBOARD
====================================== */

.admin-notifications {
    display: grid;
    gap: 12px;

    width: 100%;
    margin: 0 0 28px;

    box-sizing: border-box;
}

.admin-notification {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 20px;

    background: #fff;

    border: 1px solid #eadfd6;
    border-left: 4px solid #820d23;

    border-radius: 12px;

    box-shadow:
        0 4px 18px
        rgba(0, 0, 0, 0.06);
}

.admin-notification-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-notification-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f6e9eb;
    color: #820d23;

    font-size: 18px;
}

.admin-notification-text strong {
    display: block;

    margin-bottom: 3px;

    font-size: 15px;
    color: #2c2224;
}

.admin-notification-text span {
    font-size: 13px;
    color: #756a6c;
}

.admin-notification-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 28px;
    height: 28px;

    padding: 0 8px;

    margin-left: 8px;

    border-radius: 20px;

    background: #820d23;
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.admin-notification-link {
    padding: 10px 15px;

    border-radius: 8px;

    background: #820d23;
    color: #fff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    white-space: nowrap;

    transition: 0.2s ease;
}

.admin-notification-link:hover {
    background: #650a1b;
}


/* MOBILE */

@media (max-width: 650px) {

    .admin-notification {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-notification-link {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

}

/* ========================================
   PAGINA SCELTA ACCESSO
======================================== */

.access-page {
    margin: 0;
    min-height: 100vh;
    background: #f7f1e7;
}

.access-wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.access-card {
    width: 100%;
    max-width: 850px;

    background: #fff;

    padding: 50px 45px;

    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);

    text-align: center;
}

.access-logo {
    width: 110px;
    margin-bottom: 18px;
}

.access-small-title {
    margin: 0 0 8px;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: #b08b3e;
}

.access-card h1 {
    margin: 0 0 10px;

    color: #5b0d16;

    font-size: 2.2rem;
}

.access-description {
    margin-bottom: 35px;

    color: #666;
}

.access-options {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.access-option-card {
    padding: 30px;

    border: 1px solid #e5ddd1;

    border-radius: 14px;

    text-decoration: none;

    color: inherit;

    transition: 0.2s;

    background: #fff;
}

.access-option-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);

    border-color: #b08b3e;
}

.access-option-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7f1e7;

    color: #6f101b;

    font-size: 1.6rem;
}

.access-option-card h2 {
    margin: 0 0 10px;

    color: #5b0d16;
}

.access-option-card p {
    margin: 0;

    color: #666;

    line-height: 1.6;
}

.access-back-home {
    display: inline-block;

    margin-top: 30px;

    color: #555;

    text-decoration: none;
}

.access-back-home:hover {
    color: #6f101b;
}

@media (max-width: 700px) {

    .access-options {
        grid-template-columns: 1fr;
    }

    .access-card {
        padding: 35px 24px;
    }

}
/* ========================================
   AREA CLIENTE
======================================== */

.client-login-page {
    margin: 0;
    min-height: 100vh;
    background: #f7f1e7;
}

.client-login-wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.client-login-card {
    width: 100%;
    max-width: 480px;

    background: #ffffff;

    padding: 45px 40px;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);

    text-align: center;
}

.client-login-logo {
    width: 110px;
    height: auto;

    margin-bottom: 18px;
}

.client-small-title {
    margin: 0 0 8px;

    color: #b08b3e;

    font-size: 0.8rem;

    font-weight: 700;

    letter-spacing: 2px;
}

.client-login-card h1 {
    margin: 0 0 12px;

    color: #5b0d16;

    font-size: 2.1rem;
}

.client-login-description {
    margin: 0 0 32px;

    color: #666;

    line-height: 1.6;
}

.client-login-options {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.client-option-button {
    display: block;

    padding: 14px 20px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.2s;
}

.client-login-button {
    background: #6f101b;

    color: white;
}

.client-login-button:hover {
    background: #8c1825;

    transform: translateY(-1px);
}

.client-register-button {
    border: 2px solid #6f101b;

    color: #6f101b;

    background: white;
}

.client-register-button:hover {
    background: #f7f1e7;
}

.client-option-button i {
    margin-right: 8px;
}

.client-back-link {
    display: inline-block;

    margin-top: 28px;

    color: #555;

    text-decoration: none;

    font-size: 0.9rem;
}

.client-back-link:hover {
    color: #6f101b;
}

@media (max-width: 520px) {

    .client-login-card {
        padding: 35px 24px;
    }

}
/* ========================================
   MESSAGGI AREA CLIENTE
======================================== */

.client-message-success {
    display: none;

    margin-bottom: 22px;

    padding: 12px 14px;

    border-radius: 8px;

    background: #e9f7ed;

    color: #216b36;

    font-size: 0.9rem;
}

.client-message-success.show {
    display: block;
}

.client-register-text {
    margin-top: 22px;

    color: #666;

    font-size: 0.9rem;
}

.client-register-text a {
    color: #6f101b;

    font-weight: 700;

    text-decoration: none;
}

.client-register-text a:hover {
    text-decoration: underline;
}
/* ========================================
   DASHBOARD CLIENTE
======================================== */

.client-dashboard-page {
    margin: 0;
    min-height: 100vh;
    background: #f7f1e7;
}

.client-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 6%;

    background: #ffffff;
    border-bottom: 3px solid #d4af37;
}

.client-dashboard-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.client-dashboard-brand img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.client-dashboard-brand p {
    margin: 0 0 4px;

    color: #b08b3e;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.client-dashboard-brand h1 {
    margin: 0;

    color: #5b0d16;

    font-size: 1.6rem;
}

.client-dashboard-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;

    background: #6f101b;
    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;
    font-weight: 700;
}

.client-dashboard-logout:hover {
    background: #8c1825;
}

.client-dashboard-main {
    width: min(1180px, 90%);
    margin: 0 auto;

    padding: 65px 0 80px;
}

.client-dashboard-welcome {
    max-width: 760px;
    margin-bottom: 45px;
}

.client-dashboard-small-title {
    margin: 0 0 10px;

    color: #b08b3e;

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.client-dashboard-welcome h2 {
    margin: 0 0 14px;

    color: #5b0d16;

    font-size: clamp(2rem, 4vw, 3rem);
}

.client-dashboard-welcome > p:last-child {
    margin: 0;

    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.client-dashboard-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.client-dashboard-card {
    display: block;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e5ddd1;
    border-radius: 14px;

    color: inherit;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.client-dashboard-card:hover {
    transform: translateY(-4px);

    border-color: #d4af37;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.client-dashboard-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #f7f1e7;
    color: #6f101b;

    font-size: 1.35rem;
}

.client-dashboard-card h3 {
    margin: 0 0 10px;

    color: #5b0d16;

    font-size: 1.25rem;
}

.client-dashboard-card p {
    margin: 0 0 22px;

    color: #666;
    line-height: 1.6;
}

.client-dashboard-card span {
    color: #9b762d;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.client-dashboard-card span i {
    margin-left: 5px;
}

.client-dashboard-home {
    margin-top: 40px;
    text-align: center;
}

.client-dashboard-home a {
    color: #5b0d16;

    font-weight: 700;
    text-decoration: none;
}

.client-dashboard-home i {
    margin-right: 7px;
}


/* TELEFONO */

@media (max-width: 700px) {

    .client-dashboard-header {
        padding: 18px 20px;
    }

    .client-dashboard-brand img {
        width: 55px;
        height: 55px;
    }

    .client-dashboard-brand h1 {
        font-size: 1.15rem;
    }

    .client-dashboard-brand p {
        display: none;
    }

    .client-dashboard-logout {
        padding: 10px 14px;
    }

    .client-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .client-dashboard-main {
        width: min(92%, 600px);
        padding-top: 45px;
    }

}
/* ========================================
   PAGINA PUBBLICA SPETTACOLI
======================================== */

.shows-page-hero {
    background: #f7f1e7;
    padding: 70px 24px 50px;
    text-align: center;
}

.shows-page-hero .container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.shows-page-hero .section-subtitle {
    margin: 0 0 12px;
    color: #b58a2a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.shows-page-hero h2 {
    margin: 0 0 18px;
    color: #650b17;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.shows-page-hero p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* SEZIONI */

.shows-public-section {
    background: #ffffff;
    padding: 70px 24px;
}

.shows-public-past {
    background: #f7f1e7;
}

.shows-public-section .container {
    width: min(1150px, 100%);
    margin: 0 auto;
}

.shows-public-heading {
    margin-bottom: 35px;
}

.shows-public-heading .section-subtitle {
    margin: 0 0 8px;
    color: #b58a2a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.shows-public-heading h2 {
    margin: 0;
    color: #650b17;
    font-size: clamp(2rem, 4vw, 2.8rem);
}


/* GRIGLIA */

.shows-public-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(280px, 1fr)
    );
    gap: 30px;
}


/* CARD SPETTACOLO */

.show-public-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8dfd2;
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.show-public-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.11);
}


/* LOCANDINA */

.show-public-image {
    width: 100%;
    height: 380px;

    background: #f3eee5;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.show-public-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* CONTENUTO */

.show-public-content {
    padding: 25px;
}

.show-public-status {
    display: inline-block;

    margin-bottom: 12px;

    color: #b58a2a;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.show-public-content h3 {
    margin: 0 0 14px;

    color: #650b17;

    font-size: 1.5rem;
}

.show-public-date {
    margin: 0 0 15px;

    color: #444;

    font-size: 0.95rem;
}

.show-public-date i {
    margin-right: 5px;
    color: #650b17;
}

.show-public-description {
    margin: 0 0 22px;

    color: #666;

    line-height: 1.6;
}


/* PULSANTE PRENOTA */

.show-public-book {
    display: inline-block;

    padding: 12px 24px;

    background: #650b17;
    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.show-public-book:hover {
    background: #861523;
    transform: translateY(-2px);
}


/* NESSUNO SPETTACOLO */

.shows-public-empty {
    grid-column: 1 / -1;

    padding: 35px;

    background: #f7f1e7;

    border-radius: 10px;

    color: #666;

    text-align: center;
}


/* RESPONSIVE */

@media (max-width: 700px) {

    .shows-page-hero {
        padding: 50px 20px 40px;
    }

    .shows-public-section {
        padding: 50px 20px;
    }

    .shows-public-grid {
        grid-template-columns: 1fr;
    }

    .show-public-image {
        height: 330px;
    }

}
/* ========================================
   UPLOAD LOCANDINA
======================================== */

.poster-upload-area {
    width: 100%;
    min-height: 260px;

    border: 2px dashed #c5aa6a;
    border-radius: 12px;

    background: #faf7f1;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    cursor: pointer;

    transition: 0.2s;

    overflow: hidden;
}

.poster-upload-area:hover,
.poster-upload-area.drag-active {
    border-color: #6f101b;

    background: #f7f1e7;
}

.poster-upload-placeholder {
    padding: 35px 20px;
}

.poster-upload-placeholder i {
    margin-bottom: 15px;

    color: #6f101b;

    font-size: 2.5rem;
}

.poster-upload-placeholder h3 {
    margin: 0 0 10px;

    color: #5b0d16;
}

.poster-upload-placeholder p {
    margin: 0 0 8px;

    color: #555;
}

.poster-upload-placeholder span {
    color: #888;

    font-size: 0.85rem;
}

.poster-preview {
    width: 100%;

    padding: 20px;
}

.poster-preview img {
    display: block;

    max-width: 280px;
    max-height: 380px;

    margin: 0 auto 20px;

    object-fit: contain;

    border-radius: 8px;
}

.poster-remove-button {
    padding: 10px 18px;

    border: none;

    border-radius: 6px;

    background: #6f101b;
    color: white;

    cursor: pointer;
}

.poster-remove-button:hover {
    background: #8c1825;
}
/* ========================================
   GESTIONE SPETTACOLI ADMIN
======================================== */

.admin-shows-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 35px;
}

.admin-shows-toolbar h2 {
    margin: 0 0 6px;
    color: #5b0d16;
    font-size: 1.8rem;
}

.admin-shows-toolbar p {
    margin: 0;
    color: #666;
}

.admin-add-show-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;

    background: #6f101b;
    color: white;

    border-radius: 7px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.2s;
}

.admin-add-show-button:hover {
    background: #8c1825;
    transform: translateY(-2px);
}


/* SEZIONI */

.admin-shows-group {
    margin-bottom: 50px;
}

.admin-shows-group > h2 {
    margin-bottom: 22px;

    color: #5b0d16;
    font-size: 1.7rem;
}


/* GRIGLIA */

.admin-shows-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;
}


/* CARD */

.admin-show-card {
    background: white;

    border: 1px solid #e4ddd2;
    border-radius: 12px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.06);

    overflow: hidden;
}

.admin-show-card-content {
    padding: 26px;
}

.admin-show-status {
    display: inline-block;

    margin-bottom: 10px;

    color: #b08b3e;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.admin-show-card h3 {
    margin: 0 0 15px;

    color: #5b0d16;

    font-size: 1.35rem;
}

.admin-show-card p {
    margin: 7px 0;

    color: #555;

    line-height: 1.5;
}

.admin-show-card p i {
    width: 22px;

    color: #6f101b;
}

.admin-show-description {
    margin-top: 16px !important;

    padding-top: 14px;

    border-top: 1px solid #eee;
}


/* AZIONI */

.admin-show-actions {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.admin-show-edit,
.admin-show-delete {
    flex: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 14px;

    border-radius: 6px;

    font-weight: 700;
    font-size: 0.9rem;

    cursor: pointer;

    transition: 0.2s;
}

.admin-show-edit {
    background: #f7f1e7;

    border: 1px solid #c9ac6b;

    color: #6f101b;
}

.admin-show-edit:hover {
    background: #eee1ca;
}

.admin-show-delete {
    background: #6f101b;

    border: 1px solid #6f101b;

    color: white;
}

.admin-show-delete:hover {
    background: #8c1825;
}


/* MOBILE */

@media (max-width: 700px) {

    .admin-shows-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-shows-grid {
        grid-template-columns: 1fr;
    }

    .admin-show-actions {
        flex-direction: column;
    }

}
/* ========================================
   HERO CHI SIAMO - CORREZIONE TITOLO
======================================== */

.about-hero h2 {
    margin: 20px 0 14px;

    color: #ffffff;

    font-size: clamp(2.4rem, 5vw, 4.2rem);

    font-weight: 700;

    line-height: 1.1;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.65);
}

.about-hero-subtitle {
    color: #d9ad3f;

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: 6px;
}

.about-hero-description {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size: 1.25rem;

    line-height: 1.6;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7);
}
/* ========================================
   LISTA ESPERIENZA
======================================== */

.experience-list {
    max-width: 950px;
    margin: 35px auto;
    text-align: center;
}

.experience-list p {
    margin: 0 0 18px;

    font-size: 1.15rem;
    line-height: 1.6;

    color: #333;
}

.experience-list strong {
    color: #650b17;
    font-weight: 700;
}

.experience-list span {
    color: #333;
}
/* ========================================
   LISTA EVENTI E SERVIZI
======================================== */

.events-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.events-list li {
    list-style: none;
}
/* ========================================
   CHI SIAMO - SEZIONE FINALE
======================================== */

.about-final {
    background: #f7f1e7;
    padding: 55px 24px 75px;
    text-align: center;
}

.about-final .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-final-text {
    margin: 0 auto 28px;

    color: #333;

    font-size: 1.15rem;
    line-height: 1.7;

    text-align: center;
}

.about-final::before {
    content: "";

    display: block;

    width: 65px;
    height: 2px;

    margin: 0 auto 30px;

    background: #b58a2a;
}

.about-final .primary-button {
    display: inline-block;

    padding: 14px 28px;

    background: #650b17;
    color: #ffffff;

    border: 1px solid #650b17;
    border-radius: 4px;

    text-decoration: none;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: 0.2s ease;
}

.about-final .primary-button:hover {
    background: #861523;
    border-color: #861523;

    transform: translateY(-2px);
}
.about-philosophy {
    padding-bottom: 45px;
}
/* ========================================
   RIDUZIONE SPAZIO FINALE CHI SIAMO
======================================== */

.about-philosophy {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
}

.about-final {
    padding: 30px 24px 60px !important;
    margin-top: 0 !important;
}

.about-final .container {
    margin-top: 0 !important;
}

.about-final-text {
    margin-top: 0 !important;
    margin-bottom: 25px;
}
/* ========================================
   CHI SIAMO - SPAZIATURE GENERALI
======================================== */

.about-page .about-section,
.about-experience,
.about-events,
.about-philosophy,
.about-final {
    padding-top: 60px !important;
    padding-bottom: 60px !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    min-height: auto !important;
}

/* Evita margini eccessivi tra gli elementi */

.about-page section h2 {
    margin-top: 10px;
    margin-bottom: 30px;
}

.about-page section p {
    margin-top: 0;
    margin-bottom: 25px;
}

/* Liste eventi */

.events-list {
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Lista esperienza */

.experience-list {
    margin-top: 30px;
    margin-bottom: 30px;
}
/* ========================================
   PAGINA PRENOTAZIONE CLIENTE
======================================== */

.booking-card {
    max-width: 720px;
    margin: 45px auto 80px;
    padding: 0;

    background: #ffffff;

    border: 1px solid #e7ded2;
    border-radius: 14px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}


/* CONTENUTO DELLA CARD */

#bookingContent {
    padding: 38px 42px;
}


/* TITOLO SPETTACOLO */

#bookingTitolo {
    margin: 0 0 25px;

    color: #650b17;

    font-size: 2rem;
    font-weight: 700;

    line-height: 1.2;
}


/* INFORMAZIONI SPETTACOLO */

#bookingContent > p {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 12px 0;

    color: #333;

    font-size: 1.05rem;
}

#bookingContent > p i {
    width: 24px;

    color: #b58a2a;

    text-align: center;

    font-size: 1.1rem;
}

#bookingPosti {
    color: #650b17;

    font-size: 1.1rem;
}


/* SEPARATORE PRIMA DEL FORM */

#bookingForm {
    margin-top: 30px;
    padding-top: 28px;

    border-top: 1px solid #e8dfd3;
}


/* ETICHETTA */

#bookingForm label {
    display: block;

    margin-bottom: 10px;

    color: #333;

    font-size: 0.95rem;
    font-weight: 600;
}


/* NUMERO POSTI */

#numero_posti {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    margin-bottom: 25px;

    background: #faf8f4;

    border: 1px solid #d6cec2;
    border-radius: 6px;

    color: #222;

    font-family: inherit;
    font-size: 1rem;

    box-sizing: border-box;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#numero_posti:focus {
    border-color: #b58a2a;

    box-shadow:
        0 0 0 3px rgba(181, 138, 42, 0.12);
}


/* PULSANTE CONFERMA */

#bookingForm .admin-login-button {
    width: 100%;

    padding: 16px 25px;

    background: #650b17;
    color: #ffffff;

    border: none;
    border-radius: 6px;

    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#bookingForm .admin-login-button:hover {
    background: #801320;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(101, 11, 23, 0.18);
}


/* CARICAMENTO */

#bookingLoading {
    padding: 40px;

    color: #666;

    text-align: center;
}


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

@media (max-width: 700px) {

    .booking-card {
        margin: 30px 18px 60px;
    }

    #bookingContent {
        padding: 28px 22px;
    }

    #bookingTitolo {
        font-size: 1.6rem;
    }

}
/* ========================================
   PRENOTAZIONI CLIENTE
======================================== */

.client-bookings-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;
}

.client-booking-card {
    background: #ffffff;

    padding: 28px;

    border: 1px solid #e5ddd1;
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}

.client-booking-status {
    display: inline-block;

    margin-bottom: 14px;

    padding: 6px 10px;

    background: #e9f6ed;
    color: #26723c;

    border-radius: 20px;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.client-booking-card h3 {
    margin: 0 0 18px;

    color: #650b17;

    font-size: 1.4rem;
}

.client-booking-card p {
    margin: 10px 0;

    color: #444;
}

.client-booking-card p i {
    width: 22px;

    color: #b58a2a;
}

.client-booking-code {
    margin-top: 22px !important;

    padding-top: 15px;

    border-top: 1px solid #eee;

    color: #888 !important;

    font-size: 0.85rem;
}

.client-bookings-empty {
    grid-column: 1 / -1;

    padding: 55px 30px;

    background: #ffffff;

    border-radius: 12px;

    text-align: center;
}

.client-bookings-empty > i {
    margin-bottom: 15px;

    color: #b58a2a;

    font-size: 2.5rem;
}

.client-bookings-empty h3 {
    color: #650b17;
}

.client-bookings-empty a {
    display: inline-block;

    margin-top: 15px;

    padding: 12px 22px;

    background: #650b17;
    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-weight: 700;
}
/* ========================================
   GESTIONE PRENOTAZIONI ADMIN
======================================== */

.admin-bookings-section {
    margin-bottom: 55px;
}

.admin-bookings-section > h2 {
    margin-bottom: 22px;

    color: #5b0d16;
    font-size: 1.7rem;
}

.admin-bookings-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 22px;
}

.admin-booking-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e5ddd1;
    border-radius: 12px;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.06);
}

.admin-booking-status {
    display: inline-block;

    margin-bottom: 15px;

    padding: 6px 10px;

    background: #fff5d8;
    color: #856404;

    border-radius: 20px;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-booking-card h3 {
    margin: 0 0 18px;

    color: #650b17;
    font-size: 1.35rem;
}

.admin-booking-client {
    margin-bottom: 18px;

    padding: 14px;

    background: #f7f1e7;

    border-radius: 7px;
}

.admin-booking-client strong,
.admin-booking-client span {
    display: block;
}

.admin-booking-client span {
    margin-top: 5px;

    color: #666;
    font-size: 0.9rem;
}

.admin-booking-card p {
    margin: 9px 0;

    color: #444;
}

.admin-booking-card p i {
    width: 23px;

    color: #b58a2a;
}

.admin-booking-actions {
    display: flex;

    gap: 10px;

    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid #eee;
}

.admin-booking-confirm,
.admin-booking-reject {
    flex: 1;

    padding: 11px 14px;

    border-radius: 6px;

    font-weight: 700;
    cursor: pointer;
}

.admin-booking-confirm {
    border: 1px solid #26723c;

    background: #e9f6ed;
    color: #26723c;
}

.admin-booking-confirm:hover {
    background: #d5eedc;
}

.admin-booking-reject {
    border: 1px solid #8b1724;

    background: #8b1724;
    color: white;
}

.admin-booking-reject:hover {
    background: #a31c2b;
}

@media (max-width: 600px) {

    .admin-booking-actions {
        flex-direction: column;
    }

}
.status-cancelled {
    background: #eeeeee;
    color: #666666;
}

/* ========================================
   STATI PRENOTAZIONI - COLORI
======================================== */

.status-waiting {
    background: #fff5d8;
    color: #856404;
}

.status-confirmed {
    background: #e9f6ed;
    color: #26723c;
}

.status-rejected {
    background: #fce8e8;
    color: #9b1c1c;
}

.status-cancelled {
    background: #eeeeee;
    color: #666666;
}

.client-booking-cancel {
    width: 100%;
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid #8b1724;
    border-radius: 6px;
    background: #ffffff;
    color: #8b1724;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.2s ease;
}

.client-booking-cancel:hover {
    background: #8b1724;
    color: #ffffff;
}
/* =========================================================
   RECENSIONI CLIENTE - DESIGN PROFESSIONALE
========================================================= */


/* =========================
   SEZIONE FORM
========================= */

.client-review-form-section {
    width: 100%;
    margin-bottom: 70px;
}


/* CARD PRINCIPALE */

.client-review-form-card {
    position: relative;

    width: 100%;
    max-width: 900px;

    padding: 42px 45px;

    background: #ffffff;

    border: 1px solid rgba(199, 162, 77, 0.35);
    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(66, 9, 20, 0.08);

    overflow: hidden;
}


/* LINEA ORO SUPERIORE */

.client-review-form-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #c7a24d;
}


/* TITOLO */

.client-review-form-card h2 {
    margin: 0 0 8px;

    color: #5b0d16;

    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
}


/* DESCRIZIONE */

.client-review-form-card > p {
    margin: 0 0 35px;

    color: #666;

    font-size: 0.95rem;
    line-height: 1.7;
}


/* =========================
   GRUPPI FORM
========================= */

.client-review-group {
    margin-bottom: 28px;
}


.client-review-group label {
    display: block;

    margin-bottom: 11px;

    color: #38292c;

    font-size: 0.9rem;
    font-weight: 700;
}


/* =========================
   STELLE
========================= */

.client-review-stars {
    display: flex;
    align-items: center;

    gap: 8px;

    min-height: 46px;
}


.client-review-stars button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #faf7f0;

    color: #c7a24d;

    font-size: 1.45rem;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


.client-review-stars button:hover {
    transform: translateY(-3px) scale(1.07);

    background: #f3e8cb;

    color: #b58a2a;

    box-shadow:
        0 6px 15px rgba(181, 138, 42, 0.18);
}


.client-review-stars button:focus-visible {
    outline: 2px solid #c7a24d;
    outline-offset: 3px;
}


/* =========================
   TEXTAREA
========================= */

.client-review-group textarea {
    display: block;

    width: 100%;
    min-height: 160px;

    padding: 18px 20px;

    border: 1px solid #ddd3c5;
    border-radius: 10px;

    background: #fdfcf9;

    color: #2c2526;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;

    resize: vertical;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.client-review-group textarea::placeholder {
    color: #99928a;
}


.client-review-group textarea:focus {
    background: #ffffff;

    border-color: #c7a24d;

    box-shadow:
        0 0 0 3px rgba(199, 162, 77, 0.12);
}


/* =========================
   CONTATORE CARATTERI
========================= */

.client-review-counter {
    margin-top: 8px;

    color: #8a8380;

    font-size: 0.8rem;

    text-align: right;
}


/* =========================
   MESSAGGI
========================= */

.client-settings-message:not(:empty) {
    margin-bottom: 20px;

    padding: 13px 16px;

    border-left: 4px solid #c7a24d;
    border-radius: 7px;

    background: #faf5e8;

    color: #5b481d;

    font-size: 0.88rem;
    line-height: 1.5;
}


/* =========================
   PULSANTE INVIO
========================= */

#reviewSubmit {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 8px;

    padding: 16px 24px;

    border: none;
    border-radius: 8px;

    background: #6f1020;

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(111, 16, 32, 0.15);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


#reviewSubmit:hover {
    background: #851427;

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(111, 16, 32, 0.22);
}


#reviewSubmit:active {
    transform: translateY(0);
}


#reviewSubmit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   RECENSIONI INVIATE
========================================================= */

.client-reviews-section {
    width: 100%;

    padding-top: 10px;
}


.client-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(111, 16, 32, 0.12);
}


.client-reviews-header h2 {
    margin: 0;

    color: #5b0d16;

    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
}


/* =========================
   GRIGLIA
========================= */

.client-reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 24px;

    width: 100%;
}


/* =========================
   CARD RECENSIONE
========================= */

.client-review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 230px;

    padding: 28px 30px;

    background: #ffffff;

    border: 1px solid #e7ded2;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(66, 9, 20, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.client-review-card:hover {
    transform: translateY(-4px);

    border-color: rgba(199, 162, 77, 0.65);

    box-shadow:
        0 14px 35px rgba(66, 9, 20, 0.11);
}


/* =========================
   STATO RECENSIONE
========================= */

.client-review-card .client-booking-status {
    align-self: flex-start;

    margin-bottom: 20px;

    padding: 7px 13px;

    border-radius: 30px;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.1px;
}


/* IN ATTESA */

.client-review-card .status-waiting {
    background: #fff5d8;
    color: #856404;

    border: 1px solid #f0dda0;
}


/* APPROVATA */

.client-review-card .status-confirmed {
    background: #e9f6ed;
    color: #26723c;

    border: 1px solid #c9e8d2;
}


/* RIFIUTATA */

.client-review-card .status-rejected {
    background: #fce8e8;
    color: #9b1c1c;

    border: 1px solid #f1caca;
}


/* =========================
   STELLE CARD
========================= */

.client-review-card-stars {
    display: flex;

    gap: 4px;

    margin-bottom: 18px;

    color: #c7a24d;

    font-size: 1.25rem;
}


/* =========================
   TESTO RECENSIONE
========================= */

.client-review-card-text {
    flex: 1;

    margin: 0 0 24px;

    color: #40383a;

    font-size: 0.95rem;
    line-height: 1.75;

    overflow-wrap: anywhere;
}


/* VIRGOLETTE DECORATIVE */

.client-review-card-text::before {
    content: "“";

    margin-right: 3px;

    color: #c7a24d;

    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
}


.client-review-card-text::after {
    content: "”";

    margin-left: 3px;

    color: #c7a24d;

    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
}


/* =========================
   DATA
========================= */

.client-review-card-date {
    margin: auto 0 0;

    padding-top: 16px;

    border-top: 1px solid #eee7de;

    color: #918783;

    font-size: 0.78rem;
    font-weight: 500;
}


/* =========================================================
   BOX NESSUNA RECENSIONE
========================================================= */

.client-reviews-grid .client-bookings-empty {
    padding: 55px 30px;

    background: #ffffff;

    border: 1px solid #e7ded2;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(66, 9, 20, 0.05);
}


.client-reviews-grid .client-bookings-empty > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #f7f1e7;

    color: #c7a24d;

    font-size: 1.7rem;
}


.client-reviews-grid .client-bookings-empty h3 {
    margin-bottom: 10px;

    color: #5b0d16;

    font-size: 1.3rem;
}


.client-reviews-grid .client-bookings-empty p {
    color: #777;

    line-height: 1.6;
}


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

@media (max-width: 900px) {

    .client-review-form-card {
        max-width: 100%;
    }

}


@media (max-width: 700px) {

    .client-review-form-section {
        margin-bottom: 50px;
    }


    .client-review-form-card {
        padding: 30px 24px;

        border-radius: 12px;
    }


    .client-review-form-card h2 {
        font-size: 1.75rem;
    }


    .client-review-stars {
        gap: 5px;
    }


    .client-review-stars button {
        width: 39px;
        height: 39px;

        font-size: 1.3rem;
    }


    .client-review-group textarea {
        min-height: 145px;

        padding: 15px 16px;
    }


    .client-reviews-header h2 {
        font-size: 1.7rem;
    }


    .client-reviews-grid {
        grid-template-columns: 1fr;
    }


    .client-review-card {
        min-height: auto;

        padding: 25px 23px;
    }

}


@media (max-width: 420px) {

    .client-review-stars button {
        width: 36px;
        height: 36px;

        font-size: 1.2rem;
    }


    #reviewSubmit {
        padding: 15px 16px;

        font-size: 0.8rem;
    }

}
/* =========================================================
   HOME - PULSANTE TUTTE LE RECENSIONI
========================================================= */

.reviews-button {
    display: flex;
    justify-content: center;

    margin-top: 38px;
}


.reviews-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 280px;

    padding: 15px 28px;

    background: #6f1020;

    border: 2px solid #6f1020;
    border-radius: 7px;

    color: #ffffff;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(111, 16, 32, 0.15);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.reviews-button a::after {
    content: "→";

    margin-left: 12px;

    font-size: 1rem;

    transition: transform 0.25s ease;
}


.reviews-button a:hover {
    background: #851427;

    border-color: #851427;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(111, 16, 32, 0.22);
}


.reviews-button a:hover::after {
    transform: translateX(5px);
}


@media (max-width: 500px) {

    .reviews-button a {
        width: 100%;
        min-width: 0;

        padding: 14px 20px;

        font-size: 0.76rem;
    }

}
/* =========================================================
   PAGINA PUBBLICA - TUTTE LE RECENSIONI
========================================================= */

.reviews-public-header {
    background: #6f1020;
    border-bottom: 4px solid #c7a24d;
}

.reviews-public-header-inner {
    min-height: 115px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.reviews-public-brand {
    display: flex;
    align-items: center;

    gap: 18px;

    color: #ffffff;
    text-decoration: none;
}

.reviews-public-brand img {
    width: 80px;
    height: 70px;

    object-fit: contain;

    background: #ffffff;
}

.reviews-public-brand p {
    margin: 0 0 5px;

    color: #d6b15c;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.reviews-public-brand span {
    color: #ffffff;

    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.reviews-public-back {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 13px 19px;

    background: #ffffff;

    border-radius: 7px;

    color: #6f1020;

    font-size: 0.82rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.reviews-public-back:hover {
    transform: translateY(-2px);
    background: #f8f3ea;
}


/* INTRO */

.reviews-public-main {
    background: #f7f3eb;
}

.reviews-public-intro {
    padding: 80px 0 45px;

    text-align: center;
}

.reviews-public-intro h1 {
    margin: 10px 0 18px;

    color: #5b0d16;

    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.reviews-public-description {
    max-width: 720px;

    margin: 0 auto;

    color: #625b5c;

    font-size: 1rem;
    line-height: 1.8;
}


/* GRIGLIA */

.reviews-public-list {
    padding: 25px 0 90px;
}

.reviews-public-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(310px, 1fr));

    gap: 28px;
}


/* CARD */

.reviews-public-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 38px 34px;

    background: #ffffff;

    border: 1px solid #e7ded2;
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(65, 14, 23, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.reviews-public-card::before {
    content: "“";

    position: absolute;

    top: 12px;
    right: 25px;

    color: rgba(199, 162, 77, 0.16);

    font-family: Georgia, serif;
    font-size: 5rem;
}

.reviews-public-card:hover {
    transform: translateY(-5px);

    border-color: rgba(199, 162, 77, 0.65);

    box-shadow:
        0 17px 40px rgba(65, 14, 23, 0.11);
}


/* STELLE */

.reviews-public-stars {
    display: flex;

    gap: 5px;

    margin-bottom: 25px;

    color: #d6a91e;

    font-size: 1.2rem;
}


/* TESTO */

.reviews-public-text {
    position: relative;
    z-index: 1;

    flex: 1;

    margin: 0 0 30px;

    color: #4d4546;

    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.9;

    overflow-wrap: anywhere;
}


/* AUTORE */

.reviews-public-author {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-top: 20px;

    border-top: 1px solid #eee6dc;
}

.reviews-public-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f4ead4;

    color: #8a681f;
}

.reviews-public-author h3 {
    margin: 0 0 4px;

    color: #6f1020;

    font-size: 0.92rem;
    font-weight: 700;
}

.reviews-public-author p {
    margin: 0;

    color: #968c89;

    font-size: 0.73rem;
}


/* CARICAMENTO */

.reviews-public-loading,
.reviews-public-empty {
    grid-column: 1 / -1;

    padding: 70px 30px;

    background: #ffffff;

    border-radius: 15px;

    text-align: center;

    color: #706869;
}

.reviews-public-loading i,
.reviews-public-empty > i {
    margin-bottom: 18px;

    color: #c7a24d;

    font-size: 2rem;
}

.reviews-public-empty h2 {
    margin: 0 0 10px;

    color: #5b0d16;
}


/* CTA */

.reviews-public-cta {
    padding: 0 0 90px;
}

.reviews-public-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px 50px;

    background: #ffffff;

    border: 1px solid rgba(199, 162, 77, 0.4);
    border-radius: 16px;

    box-shadow:
        0 10px 30px rgba(65, 14, 23, 0.06);
}

.reviews-public-cta-box h2 {
    margin: 7px 0 10px;

    color: #5b0d16;

    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.reviews-public-cta-box p:last-child {
    margin: 0;

    color: #696162;

    line-height: 1.7;
}

.reviews-public-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 16px 25px;

    background: #6f1020;

    border-radius: 7px;

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.reviews-public-cta-button:hover {
    background: #851427;
    transform: translateY(-2px);
}


/* FOOTER */

.reviews-public-footer {
    padding: 45px 20px;

    background: #4d0b14;

    color: #ffffff;

    text-align: center;
}

.reviews-public-footer img {
    width: 75px;

    margin-bottom: 15px;

    background: #ffffff;
}

.reviews-public-footer p {
    margin: 0 0 15px;
}

.reviews-public-footer a {
    color: #d6b15c;
    text-decoration: none;
    font-size: 0.82rem;
}


/* RESPONSIVE */

@media (max-width: 750px) {

    .reviews-public-header-inner {
        min-height: auto;

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .reviews-public-brand img {
        width: 60px;
        height: 55px;
    }

    .reviews-public-brand span {
        font-size: 1.1rem;
    }

    .reviews-public-back {
        padding: 11px 14px;

        font-size: 0.72rem;
    }

    .reviews-public-intro {
        padding-top: 55px;
    }

    .reviews-public-grid {
        grid-template-columns: 1fr;
    }

    .reviews-public-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .reviews-public-cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 28px;
    }

    .reviews-public-cta-button {
        width: 100%;
    }

}


@media (max-width: 500px) {

    .reviews-public-brand div {
        display: none;
    }

    .reviews-public-intro h1 {
        font-size: 2.4rem;
    }

}
/* =========================================================
   ADMIN - GESTIONE UTENTI
========================================================= */

.admin-users-section {
    width: 100%;
}

.admin-users-summary {
    margin-bottom: 28px;
}

.admin-users-summary-card {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 20px 24px;

    background: #ffffff;

    border: 1px solid #e5ddd1;
    border-radius: 12px;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.05);
}

.admin-users-summary-card > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #f7f1e7;
    color: #b08b3e;

    font-size: 1.2rem;
}

.admin-users-summary-card span {
    display: block;

    margin-bottom: 4px;

    color: #777;

    font-size: 0.8rem;
    font-weight: 600;
}

.admin-users-summary-card strong {
    display: block;

    color: #5b0d16;

    font-size: 1.6rem;
}


/* ======================================
   BARRA DI RICERCA
====================================== */

.admin-users-toolbar {
    margin-bottom: 30px;
}

.admin-users-search {
    position: relative;

    max-width: 520px;
}

.admin-users-search i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #b08b3e;
}

.admin-users-search input {
    width: 100%;

    padding: 14px 16px 14px 45px;

    border: 1px solid #ddd3c5;
    border-radius: 9px;

    background: #ffffff;

    color: #333;

    font-family: inherit;
    font-size: 0.92rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.admin-users-search input:focus {
    border-color: #b08b3e;

    box-shadow:
        0 0 0 3px rgba(176, 139, 62, 0.12);
}


/* ======================================
   GRIGLIA UTENTI
====================================== */

.admin-users-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 24px;
}


/* ======================================
   CARD UTENTE
====================================== */

.admin-user-card {
    background: #ffffff;

    padding: 28px;

    border: 1px solid #e5ddd1;
    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.admin-user-card:hover {
    transform: translateY(-4px);

    border-color: #d4af37;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.09);
}


/* ======================================
   TESTATA CARD
====================================== */

.admin-user-card-header {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 22px;
}

.admin-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #6f101b;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-user-identity h3 {
    margin: 0 0 4px;

    color: #5b0d16;

    font-size: 1.15rem;
}

.admin-user-identity p {
    margin: 0;

    color: #999;

    font-size: 0.78rem;
}


/* ======================================
   INFO UTENTE
====================================== */

.admin-user-info {
    margin-bottom: 22px;
}

.admin-user-info p {
    display: flex;
    align-items: center;

    gap: 10px;

    margin: 10px 0;

    color: #555;

    font-size: 0.9rem;
}

.admin-user-info i {
    width: 20px;

    color: #b08b3e;
}


/* ======================================
   STATISTICHE UTENTE
====================================== */

.admin-user-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    padding-top: 18px;

    border-top: 1px solid #eee;
}

.admin-user-stats > div {
    padding: 14px;

    background: #f7f1e7;

    border-radius: 9px;

    text-align: center;
}

.admin-user-stats i {
    display: block;

    margin-bottom: 7px;

    color: #b08b3e;
}

.admin-user-stats span {
    display: block;

    margin-bottom: 5px;

    color: #777;

    font-size: 0.75rem;
    font-weight: 600;
}

.admin-user-stats strong {
    display: block;

    color: #5b0d16;

    font-size: 1.25rem;
}


/* ======================================
   STATO CARICAMENTO / VUOTO
====================================== */

.admin-users-loading,
.admin-users-empty {
    grid-column: 1 / -1;

    padding: 55px 30px;

    background: #ffffff;

    border: 1px solid #e5ddd1;
    border-radius: 12px;

    text-align: center;

    color: #666;
}

.admin-users-empty > i {
    margin-bottom: 14px;

    color: #b08b3e;

    font-size: 2rem;
}

.admin-users-empty h3 {
    margin: 0 0 8px;

    color: #5b0d16;
}

.admin-users-empty p {
    margin: 0;

    color: #777;
}


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

@media (max-width: 700px) {

    .admin-users-grid {
        grid-template-columns: 1fr;
    }

    .admin-users-summary-card {
        width: 100%;
    }

    .admin-users-search {
        max-width: 100%;
    }

    .admin-user-card {
        padding: 24px 20px;
    }

}
/* =========================================================
   AREA CLIENTE - IMPOSTAZIONI ACCOUNT
========================================================= */


/* ======================================
   AZIONI HEADER CLIENTE
====================================== */

.client-dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.client-site-link,
.client-logout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 8px;

    font-size: 0.86rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.client-site-link {
    border: 1px solid #ded4c6;

    background: #ffffff;

    color: #6f101b;
}


.client-site-link:hover {
    background: #f7f1e7;

    transform: translateY(-2px);
}


.client-logout-button {
    border: 1px solid #6f101b;

    background: #6f101b;

    color: #ffffff;
}


.client-logout-button:hover {
    background: #871425;

    transform: translateY(-2px);
}


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

.client-welcome {
    max-width: 760px;

    margin-bottom: 48px;
}


.client-welcome h2 {
    margin: 0 0 12px;

    color: #5b0d16;

    font-size: clamp(
        2rem,
        4vw,
        2.8rem
    );
}


.client-welcome > p:last-child {
    margin: 0;

    color: #646060;

    font-size: 1rem;
    line-height: 1.7;
}


/* ======================================
   SEZIONI IMPOSTAZIONI
====================================== */

.client-settings-section {
    margin-bottom: 42px;
}


.client-settings-header {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-bottom: 18px;
}


.client-settings-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f2e7cf;

    color: #a37c29;

    font-size: 1.05rem;
}


.client-settings-header h2 {
    margin: 0 0 4px;

    color: #5b0d16;

    font-size: 1.4rem;
}


.client-settings-header p {
    margin: 0;

    color: #777;

    font-size: 0.88rem;
}


/* ======================================
   CARD
====================================== */

.client-settings-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4dbcf;
    border-radius: 14px;

    box-shadow:
        0 8px 28px rgba(69, 14, 23, 0.06);
}


/* ======================================
   DATI ACCOUNT
====================================== */

.client-settings-row {
    display: grid;

    grid-template-columns:
        minmax(130px, 200px)
        1fr;

    align-items: center;

    gap: 20px;

    padding: 22px 26px;

    border-bottom: 1px solid #eee7dd;
}


.client-settings-row:last-child {
    border-bottom: none;
}


.client-settings-row span {
    color: #837b78;

    font-size: 0.83rem;
    font-weight: 600;
}


.client-settings-row strong {
    color: #302829;

    font-size: 0.96rem;
    font-weight: 700;
}


/* ======================================
   AZIONI
====================================== */

.client-settings-action {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 28px;
}


.client-settings-action h3 {
    margin: 0 0 7px;

    color: #5b0d16;

    font-size: 1.1rem;
}


.client-settings-action p {
    margin: 0;

    max-width: 600px;

    color: #6c6666;

    font-size: 0.88rem;
    line-height: 1.6;
}


/* ======================================
   PULSANTE IMPOSTAZIONI
====================================== */

.client-settings-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 20px;

    border: 1px solid #6f101b;
    border-radius: 7px;

    background: #ffffff;

    color: #6f101b;

    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.client-settings-button:hover {
    background: #6f101b;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ======================================
   FORM PASSWORD
====================================== */

.client-password-form {
    padding: 0 28px 30px;

    border-top: 1px solid #eee7dd;
}


.client-settings-form-group {
    margin-top: 22px;
}


.client-settings-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #443b3d;

    font-size: 0.82rem;
    font-weight: 700;
}


.client-settings-form-group input {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #dbd1c4;
    border-radius: 8px;

    background: #fdfcf9;

    color: #302829;

    font-family: inherit;
    font-size: 0.92rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.client-settings-form-group input:focus {
    background: #ffffff;

    border-color: #c7a24d;

    box-shadow:
        0 0 0 3px rgba(
            199,
            162,
            77,
            0.12
        );
}


/* ======================================
   AZIONI FORM
====================================== */

.client-settings-form-actions {
    display: flex;
    justify-content: flex-end;

    gap: 12px;

    margin-top: 25px;
}


.client-settings-cancel,
.client-settings-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 19px;

    border-radius: 7px;

    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;

    cursor: pointer;
}


.client-settings-cancel {
    border: 1px solid #d8d0c7;

    background: #ffffff;

    color: #696363;
}


.client-settings-cancel:hover {
    background: #f3efe9;
}


.client-settings-save {
    border: 1px solid #6f101b;

    background: #6f101b;

    color: #ffffff;
}


.client-settings-save:hover {
    background: #891528;
}


/* ======================================
   MESSAGGI
====================================== */

.client-settings-message {
    display: none;

    margin-top: 20px;

    padding: 12px 15px;

    border-radius: 7px;

    font-size: 0.84rem;
    line-height: 1.5;
}


.client-settings-message:not(:empty) {
    display: block;
}


.client-settings-message.success {
    border: 1px solid #bcdcc5;

    background: #e9f6ed;

    color: #26723c;
}


.client-settings-message.error {
    border: 1px solid #efc7c7;

    background: #fce8e8;

    color: #9b1c1c;
}


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

@media (max-width: 720px) {

    .client-dashboard-actions {
        gap: 7px;
    }


    .client-site-link,
    .client-logout-button {
        padding: 10px 12px;

        font-size: 0.74rem;
    }


    .client-settings-row {
        grid-template-columns: 1fr;

        gap: 6px;

        padding: 19px 20px;
    }


    .client-settings-action {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        padding: 24px 20px;
    }


    .client-settings-button {
        width: 100%;
    }


    .client-password-form {
        padding:
            0 20px
            25px;
    }


    .client-settings-form-actions {
        flex-direction: column-reverse;
    }


    .client-settings-cancel,
    .client-settings-save {
        width: 100%;
    }

}
/* TEST LOCANDINE HOME */

#homeShowsGrid .show-card {
    background: #f3f0e9 !important;
}

#homeShowsGrid .show-poster {
    background: #f3f0e9 !important;
    background-image: none !important;

    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
}

#homeShowsGrid .show-image {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    background: #f3f0e9 !important;
}
/* =========================================
   NOTIFICHE AREA CLIENTE
========================================= */

.client-notifications {
    margin: 30px 0 35px;
}

.client-notification {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px 26px;

    background: #ffffff;

    border: 1px solid rgba(128, 0, 20, 0.12);
    border-left: 5px solid #800014;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}


/* ICONA */

.client-notification-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5efe5;

    color: #800014;

    font-size: 24px;
}


/* CONTENUTO */

.client-notification-content {
    flex: 1;
}

.client-notification-content strong {
    display: block;

    margin-bottom: 5px;

    color: #800014;

    font-size: 20px;
    font-weight: 700;
}

.client-notification-content p {
    margin: 0 0 10px;

    color: #444;

    font-size: 16px;
    line-height: 1.5;
}


/* LINK */

.client-notification-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #800014;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.2s ease;
}

.client-notification-content a:hover {
    gap: 12px;
}


/* MOBILE */

@media (max-width: 600px) {

    .client-notification {
        align-items: flex-start;

        padding: 18px;

        gap: 14px;
    }

    .client-notification-icon {
        width: 44px;
        height: 44px;

        min-width: 44px;

        font-size: 20px;
    }

    .client-notification-content strong {
        font-size: 18px;
    }

    .client-notification-content p {
        font-size: 15px;
    }

}
/* =========================================
   SEZIONI PRENOTAZIONI CLIENTE
========================================= */

.client-bookings-section {
    margin-top: 30px;
}

.client-bookings-section-title {
    margin-bottom: 24px;
}

.client-bookings-section-title h2 {
    margin: 5px 0 8px;

    color: #72000f;

    font-size: 30px;
    font-weight: 700;
}

.client-bookings-section-title > div > p:last-child {
    margin: 0;

    color: #666;

    font-size: 16px;
    line-height: 1.6;
}


/* PRENOTAZIONI PASSATE */

.client-bookings-past-section {
    margin-top: 60px;

    padding-top: 40px;

    border-top: 1px solid rgba(114, 0, 15, 0.15);
}


/* CARD EVENTO PASSATO */

.client-booking-card-past {
    opacity: 0.82;
}

.client-booking-card-past:hover {
    opacity: 1;
}


/* MOBILE */

@media (max-width: 600px) {

    .client-bookings-past-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .client-bookings-section-title h2 {
        font-size: 25px;
    }

}
/* =========================================
   GESTIONE AMMINISTRATORI
========================================= */

#formNuovoAdmin {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;

    padding: 28px;

    background: #ffffff;
    border: 1px solid #e5dccd;
    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);
}


#formNuovoAdmin > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


#formNuovoAdmin label {
    font-size: 15px;
    font-weight: 600;
    color: #5f5f5f;
}


#formNuovoAdmin input {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    border: 1px solid #d8d0c4;
    border-radius: 10px;

    background: #ffffff;

    font-family: inherit;
    font-size: 16px;
    color: #333333;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


#formNuovoAdmin input:focus {
    border-color: #b98b2f;

    box-shadow:
        0 0 0 3px rgba(185, 139, 47, 0.12);
}


#formNuovoAdmin button {
    height: 48px;

    border: none;
    border-radius: 10px;

    padding: 0 22px;

    cursor: pointer;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;
}


#messaggioAdmin {
    margin-top: 15px;

    padding: 14px 18px;

    background: #ffffff;

    border: 1px solid #e5dccd;
    border-radius: 10px;

    font-size: 15px;
}


/* TABLET */

@media (max-width: 900px) {

    #formNuovoAdmin {
        grid-template-columns: 1fr 1fr;
    }

    #formNuovoAdmin button {
        grid-column: 1 / -1;
        width: 100%;
    }

}


/* TELEFONO */

@media (max-width: 600px) {

    #formNuovoAdmin {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    #formNuovoAdmin button {
        grid-column: auto;
    }

}
/* =========================================
   CAMBIO PASSWORD AMMINISTRATORE
========================================= */

#formCambioPassword {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    align-items: end;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5dccd;
    border-radius: 18px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.05);
}

#formCambioPassword > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#formCambioPassword label {
    font-size: 15px;
    font-weight: 600;
    color: #5f5f5f;
}

#formCambioPassword input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #d8d0c4;
    border-radius: 10px;
    background: #ffffff;
    font-family: inherit;
    font-size: 16px;
    color: #333333;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#formCambioPassword input:focus {
    border-color: #b98b2f;
    box-shadow:
        0 0 0 3px rgba(185, 139, 47, 0.12);
}

#formCambioPassword button {
    height: 48px;
    border: none;
    border-radius: 10px;
    padding: 0 22px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

#messaggioPassword {
    margin-top: 15px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e5dccd;
    border-radius: 10px;
    font-size: 15px;
}


/* TABLET */

@media (max-width: 900px) {

    #formCambioPassword {
        grid-template-columns: 1fr 1fr;
    }

    #formCambioPassword button {
        grid-column: 1 / -1;
        width: 100%;
    }

}


/* SMARTPHONE */

@media (max-width: 600px) {

    #formCambioPassword {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    #formCambioPassword button {
        grid-column: auto;
    }

}

/* ======================================
   FORM LOGOUT ADMIN
====================================== */

.admin-logout-form {
    margin: 0;
    padding: 0;
    display: contents;
}

.admin-logout-form .admin-logout-button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.contact-map {
    min-height: 590px;
    display: flex;
    align-items: stretch;
}

.contact-map-placeholder {
    width: 100%;
    min-height: 590px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

.contact-map-placeholder i {
    font-size: 42px;
    margin-bottom: 18px;
}

.contact-map-placeholder h3 {
    margin: 0 0 12px;
    font-size: 28px;
}

.contact-map-placeholder p {
    margin: 0 0 24px;
    line-height: 1.6;
}

.contact-map-button {
    display: inline-block;
    padding: 14px 24px;
    text-decoration: none;
    border: 1px solid currentColor;
    border-radius: 6px;
    font-weight: 600;
}

@media (max-width: 900px) {

    .contact-map,
    .contact-map-placeholder {
        min-height: 420px;
    }
}

@media (max-width: 500px) {

    .contact-map,
    .contact-map-placeholder {
        min-height: 340px;
    }
}