/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Aladin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

/* Custom Properties */
:root {
    --neon-pink: #ff71ce;
    --neon-blue: #01cdfe;
    --neon-green: #05ffa1;
    --neon-purple: #b967ff;
    --neon-yellow: #fffb96;
    --background-glow: 0 0 10px rgba(1, 205, 254, 0.5);
  }

/* Body Styling */
body {
    background: linear-gradient(90deg, var(--neon-purple) 0%, var(--neon-pink) 50%, var(--neon-blue) 100%);
    font-family: "Comic Neue", sans-serif; /* Classic early 2000s font */
    color: #333;
    text-align: center;
    margin: 0;
    padding-top: 80px;
    cursor: url('https://www.computerhope.com/cdn/cursor.cur'), auto; /* Pixelated cursor */
}

/* Navigation Bar */
.navbar {
    background-color: #ffcc00;
    border-bottom: 3px solid #333;
    font-family: 'Comic Neue', sans-serif;
}

.navbar-brand {
    font-size: 1.8em;
    color: #333 !important;
    font-weight: bold;
    font-family: "Funnel Display", sans-serif;
}

.nav-link {
    color: #333 !important;
}

.nav-link:hover {
    color: #ff69b4 !important;
}

/* Header Styling */
h1, h2, h3, h4, h5, h6 {
    font-size: 3em;
    font-family: "Aladin", sans-serif;
    color: #ff69b4;
    text-shadow: 2px 2px #333;
    margin-top: 1rem;
}

/* Gallery Container */
.gallery-container {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffcc00, #ff69b4);
    border: 4px dashed #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Frame Container */
.frame-container {
    border: 3px solid #333;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background-color: #fff;
}

.photo-frame {
    display: block;
    position: relative;
    overflow: hidden;
    border: 2px solid #ff69b4;
    border-radius: 4px;
}

.image-container {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    height: 300px; /* Set a consistent height for all image containers */
}

.image-container:hover {
    transform: scale(1.05);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the container without distortion */
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.image-container:hover .overlay {
    opacity: 1;
}

/* Date Label */
.date-label {
    text-align: center;
    font-size: 1.2em;
    font-family: 'Aladin', cursive;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-weight: bold;
    border-top: 2px solid #ff69b4;
}

/* Button Toggle 
.navbar-toggler {
    background-color: #fff;
}
*/

.navbar-toggler-icon {
    background-image: url("https://icons.getbootstrap.com/assets/icons/list.svg");
}

/* Extra Styles for Early 2000s Look */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #ff69b4;
    text-decoration: underline;
}

/* Image Styles with Hover Animation */
img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}
  
img:hover {
  box-shadow: 
    0 0 10px var(--neon-pink),
    0 0 20px var(--neon-blue),
    0 0 30px var(--neon-green);
}