/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* BODY */
body {
    background: #111;
    color: #fff;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 40px;
    font-weight: 700;
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

nav a:hover {
    color: #f04;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('immagini/foto band.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

/* Sottotitolo Rock */
.subtitle {
    margin-top: 10px;
}

/* Font speciale rock */
.rock-font {
    font-family: 'Rock Salt', cursive;
    font-size: 38px;
    font-weight: 400;
    margin-top: 10px;
    text-shadow: 0 0 10px #f04, 0 0 20px #f04;
}

/* BUTTON */
.btn {
    margin-top: 20px;
    padding: 12px 30px;
    background: #f04;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

/* SECTIONS */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section.dark {
    background: #222;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* MUSICA */
.music-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.track h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}

.track iframe {
    border-radius: 10px;
}

/* TOUR */
.tour-list {
    list-style: none;
    font-size: 24px;
}

.tour-list li {
    margin: 20px 0;
    letter-spacing: 1px;
}

/* GALLERY */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item .caption {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* CONTATTI */
#contatti p {
    font-size: 18px;
    margin: 12px 0;
    color: #fff;
}

#contatti a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

#contatti a:hover {
    opacity: 0.7;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    margin-top: 40px;
    color: #ccc;
}
.btn { display: inline-block; padding: 12px 25px; font-family: 'Rock Salt', cursive; font-size: 18px; color: #fff; background: #111; border: 3px solid #b30000; text-decoration: none; text-transform: uppercase; letter-spacing: 2px; transition: 0.25s ease-in-out; box-shadow: 0 0 10px #b30000; } .btn:hover { background: #b30000; color: #fff; box-shadow: 0 0 20px #ff1a1a, 0 0 40px #ff1a1a; transform: scale(1.05); }
