@charset "UTF-8";

/* RESET BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #FEEEDC;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 60vh;
}

/* HEADER */
.site-header {
    border-bottom: 0px solid #ddd;
}

.header-top {
    display: flex;
    justify-content: center;   /* centra orizzontalmente */
    align-items: center;
    padding: 0px 0px;
}

#point{
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    background-color: #FEEDDB;
}

.logo {
    max-height: 70px;
}

/* CONTENT */
main {
    flex: 1;
}

.content {
    padding: 0px 0px;
}

.content h1 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
}

/* WEBCAM CONTENITORE */
.webcam-placeholder {
    max-width: 1100px;
    margin: 0 auto 0px;
}

/* IMMAGINE WEBCAM */
.webcam-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
    .content {
        padding: 0px 0px;
    }

    .webcam-placeholder iframe {
        min-height: 1100px;
    }
}

/* FOOTER */
.site-footer {
    background: #6b3f16;
    color: #fff;
    padding: 0px;
    font-size: 13px;
    clear: both;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 12px;
}
