/* GENERALE */
body {
    margin: 0;
    font-family: Arial;
    background: linear-gradient(to right, #0d6efd, #00c6ff);
}

/* HEADER */
header {
    background: rgba(0, 0, 50, 0.9);
    color: white;
    padding: 20px;
}

/* LOGO + NOME */
.top-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 80px;
}

.titolo {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

/* MENU */
nav {
    margin-top: 10px;
}

nav a {
    color: #cce6ff;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: white;
}

/* HERO */
.hero {
    text-align: center;
    padding: 50px;
    color: white;
}

/* SEZIONI */
section {
    padding: 30px;
}

/* CARD */
.card {
    background: white;
    padding: 15px;
    margin: 10px;
    border-radius: 15px;
    display: inline-block;
    width: 260px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: white;
    padding: 10px;
}
/* BOTTONI */
button {
    background: #0d6efd;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}
.hero-img {
    background-image: url("img/negozio.jpg");
    height: 80vh; /* altezza dinamica */
    background-size: cover;
    background-position: center top;
}

.overlay {
    background: rgba(0, 0, 50, 0.6); /* trasparenza */
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.item:hover {
    transform: translateY(-5px);
}

.item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

.item:hover img {
    transform: scale(1.05);
}

iframe {
    border-radius: 10px;
}

.prodotto-top {
    display: flex;
    gap: 40px;
    align-items: center;
}

.foto-prodotto {
    width: 350px;
    border-radius: 10px;
}

.descrizione-prodotto {
    max-width: 500px;
}

.scheda {
    display: block;
    margin-top: 10px;
    padding: 8px;
    background: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.scheda:hover {
    background: #0044aa;
}

.home-button {
    text-align: center;
    margin: 40px 0;
}

.home-button button {
    background: #0d6efd;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.home-button button:hover {
    background: #0044aa;
}