/* Stili Generali */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Darker background */
    color: #e0e0e0; /* Lighter text */
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: #d4af37; /* Gold color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

main {
    max-width: 1100px; /* Wider content area */
    margin: 40px auto;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .logo img {
    height: 50px;
    width: auto;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 3rem;
}

header nav a {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logos img {
    height: 50px;
    width: auto;
}


/* Titolo Pagina */
.page-title {
    text-align: center;
    margin-bottom: 20px;
}

.page-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
}

/* Content Section */
.content {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    margin-bottom: 40px;
}

/* Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}


/* Footer */
footer {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 1rem;
    border-top: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.5);
    color: #aaa;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links img {
    width: 24px;
    height: 24px;
}

.contact-info p {
    margin: 0.5rem 0;
}

.footer-logos {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logos img:hover {
    opacity: 1;
}
