/* ------------------------------
   STILE INDEX PRINCIPALE
--------------------------------*/

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

/* HEADER */
header {
    width: 100%;
    height: 60px;
    background: #eee6d3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

nav {
    margin-right: 20px;
}

.linkgalleria a {
    color: #b99e7f;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.linkgalleria a:hover {
    opacity: 0.7;
}

/* CONTENUTO */
.container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 20px;
    flex: 1;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #b99e7f;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s;
}

.btn:hover {
    background: #a88765;
}

/* FOOTER */
footer {
    width: 100%;
    background: #eee6d3;
    padding: 20px 0;
    color: #333;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left,
.footer-center,
.footer-right {
    margin: 0;
}

.footer-center {
    text-align: center;
    flex: 1;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    h1 {
        font-size: 36px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-center {
        flex: unset;
    }
}
