/* Google Font Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* ===== COLORE STAGIONALE ===== */
body {
    background-color: #CC0000;
    margin-bottom: 60px;
}

/* ===== IMMAGINE HOMEPAGE ===== */
.mod-custom img {
    display: block;
    margin: 30px auto;
    border: 12px solid white;
    border-radius: 4px;
    max-width: 70%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* ===== NASCONDE MENÙ ORIZZONTALE CASSIOPEIA ===== */
.navbar-nav,
#main-nav .nav-child,
.mod-menu.nav-pills {
    display: none !important;
}

/* ===== BARRA FISSA IN FONDO ===== */
#cupolone-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 9999;
}

#cupolone-titolo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#cupolone-numero {
    font-family: 'Playfair Display', serif;
    font-size: 0.75em;
    margin-left: 12px;
    opacity: 0.75;
    font-weight: 400;
}

#cupolone-hamburger {
    font-size: 1.8em;
    cursor: pointer;
    user-select: none;
    padding: 0 5px;
}

/* ===== MENÙ A SCOMPARSA ===== */
#cupolone-menu {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 50%;
    background-color: #000000;
    display: none;
    flex-direction: column;
    z-index: 9998;
    border-top: 1px solid #444;
	max-height: 300 px;
	overflow: auto;
}

#cupolone-menu a {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    padding: 16px 24px;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: background 0.2s;
}

#cupolone-menu a:hover {
    background-color: #222;
}

#cupolone-menu.aperto {
    display: flex;
}

/* Nasconde il titolo CASSIOPEIA */
.navbar-brand {
	display: none !important;
}

.container-header {
	display: none !important;
}