* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist Sans', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #423333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social icons */
.social-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 1001;
}

.social-icons .icon {
    font-size: 1.8rem;
    color: #1c1a1a;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons .icon:hover {
    transform: scale(1.2);
    color: #524949;
}

/* Header and Navigation */
.site-header {
    background-color: #fff;
    padding: 1rem 0;
    text-align: right;
    border-bottom: 1px solid #ddd;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline;
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: #423333;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #524949;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
}

/*
.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
*/
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
    gap: 2rem; 
    justify-items: center; 
}

.gallery-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease, opacity 0.5s ease; 
}

/* Zoom and fade image on hover */
.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Overlay text */
.gallery-item::after {
    content: attr(data-title); 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #423333;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}


.gallery-item:hover::after {
    opacity: 1;
}

/* About section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    gap: 2rem;
}

.about-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.about-section p {
    max-width: 700px;
    font-size: 1.1rem;
    color: #444;
}

/* Music section */
.music-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    gap: 2rem;
}

.music-section p {
    max-width: 700px;
    font-size: 1.1rem;
    color: #444;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1024px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .photo-gallery {
        grid-template-columns: 1fr; 
    }
}

/* Lightbox modal */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(5px);      
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox .close:hover {
    color: #ccc;
}




















