/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Enable Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Sleek Pink Sticky Banner */
.main-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 40px;
    
    /* Soft Pink Glassmorphism Look */
    background-image: url('images/burger_transparent.gif');
    background-color: rgba(255, 182, 193, 0.85); 
    background-position: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #f0a8b5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-banner h1 {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.main-banner p {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}


body {
    /* Keep the text color and padding */
    color: #ffffff;
    text-align: center;
    padding: 20px;
    padding-top: 0; /* Let the banner handle the top space */
    
    /* Needed to ensure the content sits on top of the background */
    position: relative; 
    min-height: 100vh;
    z-index: 1; 
}

/* The Blurred Background Layer */
body::before {
    content: "";
    position: fixed; /* Keeps the background still when you scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Your background image */

    /*background-image: url('images/burger_transparent.gif');*/
    background-color: #fe85ab;
    background-size: cover;
    background-position: center;
    
    /* The blur effect */
    /*filter: blur(0px); */
    
    /* Puts the background strictly behind the gallery */
    z-index: -1; 
    
    /* Optional: Darkens the background so the gallery pieces pop */
    filter: blur(3px) brightness(0.9); 
}

header {
    margin-bottom: 30px;
}

/* Masonry Layout */
.gallery-container {
    /* Responsive columns */
    column-count: 3;
    column-gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    break-inside: avoid; /* Prevents images from splitting across columns */
    transition: transform 0.2s ease;
}

.gallery-img:hover {
    /*transform: scale(1.02);*/
    transform: translateY(-5px); /* Lift up slightly */
    box-shadow: 0 10px 20px rgba(240, 168, 181, 0.4);
}

/* Responsive Design for Mobile and Tablet */
@media (max-width: 900px) {
    .gallery-container { column-count: 2; }
}

@media (max-width: 600px) {
    .gallery-container { column-count: 1; }
}

/* Lightbox Styling */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Container to center the button at the bottom */
.footer-container {
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

/* The Sleek Pink Button */
.sleek-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #f0a8b5; /* Theme Pink */
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px; /* Rounded pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 168, 181, 0.3);
    border: 2px solid transparent;
}

/* Hover Effects */
.sleek-button:hover {
    background-color: white;
    color: #f0a8b5;
    border: 2px solid #f0a8b5;
    transform: translateY(-3px); /* Subtle lift */
    box-shadow: 0 8px 20px rgba(240, 168, 181, 0.5);
}

/* Active/Click effect */
.sleek-button:active {
    transform: translateY(-1px);
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf2f4;
}
::-webkit-scrollbar-thumb {
    background: #f0a8b5;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e68fa0;
}