/* RESET E IMPOSTAZIONI GENERALI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    color: #111111;
    background-color: #E5DACB;
}

/* NAVBAR FISSA */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.navbar .logo-text {
    font-family: 'Cinzel', serif;
    color: #E5DACB;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar .logo-text span {
    font-size: 0.8rem;
    color: #a82432;
    display: block;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar nav a {
    color: #E5DACB;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar nav a:hover {
    color: #8b1e2b;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* SFONDO PIÙ OPACO / SCURO PER FAR RISALTARE IL TESTO */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: #E5DACB;
    letter-spacing: 12px;
    font-weight: 500;
    line-height: 1;
}

.brand-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #E5DACB;
    letter-spacing: 6px;
    margin-top: 5px;
    margin-bottom: 20px;
}

/* LOGO BEN VISIBILE E CENTRATO */
.brand-logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.brand-logo-img img {
    width: 180px;
    height: auto;
    filter: brightness(1.65) drop-shadow(0 0 10px rgba(229, 218, 203, 0.4));
}

/* BOTTONI HERO */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 280px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #E5DACB;
    color: #111111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #58111A;
    color: #E5DACB;
    transform: translateY(-2px);
}

/* SEZIONI E CONTENUTI */
.section {
    padding: 100px 20px;
    text-align: center;
}

.dark-section {
    background-color: #58111A;
    color: #E5DACB;
}

.light-section {
    background-color: #E5DACB;
    color: #111111;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.text-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* CARDS DELLA COLLEZIONE */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(229, 218, 203, 0.2);
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #E5DACB;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* CONTATTI E MAPPA */
.contact-info {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 2;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* FOOTER */
footer {
    background-color: #111111;
    color: #E5DACB;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* RESPONSIVE PER SMARTPHONE */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3.2rem;
    }
    .brand-subtitle {
        font-size: 1.2rem;
    }
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }
    .navbar nav ul {
        gap: 15px;
    }
}