:root {
    --primary: #0b57d0;
    --background: #ffffff;
    --text: #1b1c1d;
    --accent: #f0f4f9;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 3rem 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--accent);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    background: none; 
    border: none;
    margin: 2rem 0;
}

.hero-image-placeholder img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Adds a nice "floating" depth effect */
}

nav a {
    color: var(--primary);
    text-decoration: none;
    padding: 0 0.5rem;
}

nav a:hover {
    text-decoration: underline;
}

.gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

/* .gallery img {
    flex: 0 0 auto;
    width: 250px; 
    height: auto;
    scroll-snap-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
} */

/* Hide scrollbar for a cleaner look */
/* .gallery::-webkit-scrollbar {
    display: none;
} */

.gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
}

.gallery img {
    flex: 0 0 auto;
    width: 250px;
    height: auto;
    scroll-snap-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    /* Removed the weird pointer-events so it behaves normally */
}

/* Let's style the scrollbar so it looks elegant on Desktop, instead of completely hiding it. */
.gallery::-webkit-scrollbar {
    height: 8px; /* Makes it a thin, modern bar */
}

.gallery::-webkit-scrollbar-track {
    background: #f0f4f9; 
    border-radius: 4px;
}

.gallery::-webkit-scrollbar-thumb {
    background: #0b57d0; /* Uses your primary blue color */
    border-radius: 4px;
}


