.bar {
    width: 100%;
    height: 4px;
    background-color: white;
}

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #1c1c1c 100%);
    z-index: -1;
}

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: #111;
    color: #eee;
    overflow-x: hidden;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: none;
    z-index: 2001;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-icons img {
    width: 30px;
    transition: transform 0.3s ease;
}

.footer-social-icons img:hover {
    transform: scale(1.1);
}

.gallery-footer {
    padding: 40px 0;
    text-align: center;
    background-color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.6);
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.09);
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);

}

.gallery-section {
    padding: 120px 0 60px;
    margin: 0;
    max-width: none;
    width: 100vw;
  }

.gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.hamburger-gallery {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-gallery.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-gallery.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-gallery.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.hamburger-gallery .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-gallery img {
    height: 50px;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.overlay-content a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 2px;
    font-family: 'Orbitron';
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.overlay-content a:hover {
    color: #d4af37; 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

#overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 999;
}

#overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

#overlay-menu.active ~ .social-icons {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#overlay-menu.active ~ .social-icons img {
    display: none;
}

#more-gallery {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    margin-top: 20px;
}

.more-gallery a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #d4af37;
    text-decoration: none !important;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    transition: color 0.3s ease;
}

.more-gallery a:visited {
    color: #d4af37;
}

.more-gallery a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.gallery-scroll {
    display: flex;
    flex-direction: column;
    gap: 10px; /* piccolo margine verticale tra foto */
    padding: 0;
    margin: 0;
  }
  
  .gallery-scroll img {
    width: 100%;
    max-width: 1400px;  /* o 1200px, o come preferisci */
    margin: 0 auto;
    padding: 0 20px;     /* 20px di bordo laterale (10px per lato) */
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 0 20px; /* margine laterale come le immagini */
    line-height: 1.6;
}