body {
    font-family: "headline-gothic-atf-rough-n1", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    background: black;
    font-family: 'acier-bat-noir', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    z-index: 1000;
    box-sizing: border-box;
}

.home-button {
    margin-left: 40px;
    font-size: 36px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    position: relative;
    left: -60px;
}

.nav-button {
  color: white;
  text-decoration: none;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 20px;
  transition: all 0.3s;
}

.nav-button:hover {
  background: white;
  color: #2a5298;
}

.home-button:hover {
    color: #ccc;
}

.title-container {
    text-align: center;
    margin: 120px 0 40px 0;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    font-size: 18px;
    color: #ccc;
    margin: 0;
    font-style: italic;
}

.image-grid-container {
    padding: 20px 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.image-square {
    position: relative;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.image-square:hover {
    transform: scale(1.05);
    border-color: #007BFF;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.image-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.slides img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.slides img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Fullscreen slideshow styles */
.slideshow-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 1);
    z-index: 2000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    max-width: none;
    grid-template-columns: none;
    gap: 0;
}

.slideshow-container.fullscreen .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    grid-template-columns: none;
    gap: 0;
}

.slideshow-container.fullscreen .slides img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: block !important;
    margin: 0 auto;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ccc;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 2001;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slide-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 2001;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .slideshow-container {
        padding: 0 10px;
    }
    
    .slides {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
    }
    
    .slides img {
        height: 250px;
    }
    
    .prev, .next {
        font-size: 24px;
        padding: 10px 15px;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .close-button {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    .nav-links {
        gap: 10px;
        left: -30px;
    }
    
    .nav-button {
        font-size: 14px;
        padding: 6px 12px;
    }
}


/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 2001;
}

.image-description {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
}
