﻿/* ----------------------------------------------------
   TIPOGRAFIA E BASE
---------------------------------------------------- */
body {
    font-family: 'Montserrat', sans-serif!important;
    color: #2b2b2b;
    font-size: 16px;
    background: #faf9f6;
    line-height: 1.65;
}

.camera-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.camera-subtitle {
    font-size: 20px;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.camera-hero {
    padding: 40px 0;
    text-align: center;
    background: #f3efe8;
}

/* ----------------------------------------------------
   LAYOUT A DUE COLONNE (SLIDER + SERVIZI)
---------------------------------------------------- */
.camera-gallery-row {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    align-items: start;
}

/* ----------------------------------------------------
   SLIDER
---------------------------------------------------- */
.camera-gallery {
    border: 1px solid #ccc;
    padding: 40px;
    background: #fff;
}

.lux-slider {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    max-height: 400px;
    background: #000;
}

/* Sfondo sfocato */
.lux-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(25px);
    transform: scale(1.1);
    opacity: 0.6;
    z-index: 0;
}

/* Immagini */
.lux-slides {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .lux-slides img {
        position: absolute;
        top: 35%;
        left: 50%;
        height: 300px; /* puoi mettere 350 o 400 */
        width: auto;
        max-width: 100%;
        object-fit: contain;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity .6s ease-in-out;
        z-index: 2;
        box-shadow: 0 0 10px 2px #000;
    }

        .lux-slides img.active {
            opacity: 1;
        }

/* Frecce */
.lux-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.6);
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease;
}

    .lux-arrow:hover {
        background: rgba(255,255,255,0.9);
    }

    .lux-arrow.left {
        left: 15px;
    }

    .lux-arrow.right {
        right: 15px;
    }

/* Dots */
.lux-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

    .lux-dots div {
        width: 10px;
        height: 10px;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        cursor: pointer;
        transition: background .2s ease;
    }

        .lux-dots div.active {
            background: #fff;
        }

/* ----------------------------------------------------
   SERVIZI E DETTAGLI CAMERA A DESTRA
---------------------------------------------------- */
.camera-side-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.camera-services-side,
.camera-premium-side {
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 40px;
}

    .camera-services-side h2,
    .camera-premium-side h2 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        margin-bottom: 20px;
        margin-top: 0;
    }

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .services-list li {
        font-size: 14px;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .services-list i {
        color: #bfa27a; /* oro elegante */
        font-size: 32px;
    }

/* ----------------------------------------------------
   LAYOUT A DUE COLONNE (SLIDER + SERVIZI)
---------------------------------------------------- */
.camera-content {
    display: grid;
    grid-template-columns: 1fr 350px; /* slider a sinistra, servizi a destra */
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    align-items: start;
}

/* ----------------------------------------------------
   DESCRIZIONE CAMERA
---------------------------------------------------- */
.camera-description,
.camera-services {
    border: 1px solid #ccc;
    padding: 40px;
    background: #fff;
    border-radius: 0;
}

    .camera-description h2,
    .camera-services h2 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        margin-bottom: 20px;
        letter-spacing: -0.3px;
        margin-top: 0;
    }


/* ----------------------------------------------------
   INFORMAZIONI A DESTRA
---------------------------------------------------- */
.camera-info-side {
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 10px 20px;
}

    .camera-info-side h2 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        margin-bottom: 20px;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .info-list li {
        font-size: 14px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        align-content: space-between;
        gap: 12px;
    }

    .info-list i {
        color: #bfa27a; /* oro elegante */
        font-size: 32px;
    }

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 900px) {
    .camera-gallery-row, .camera-content {
        grid-template-columns: 1fr;
    }

    .camera-services-side, .camera-info-side {
        margin-top: 30px;
    }

    .lux-slides img {
        height: 220px;
    }
}
