/* --- Base & Reset --- */
:root {
    --primary-text-color: #ffffff;
    --neon-blue: #03e9f4;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.15);
    --button-hover-bg: rgba(255, 255, 255, 0.3);
    --form-input-bg: rgba(255, 255, 255, 0.15);
    --form-input-border: rgba(255, 255, 255, 0.3);
    --form-placeholder: rgba(255, 255, 255, 0.7);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Using Open Sans and Rubik from example, adjust as needed */
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-text-color);
    background-image: url('../img/bassbody.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Keep fixed background for main page */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    overflow-x: hidden; /* Prevent horizontal scroll on body */
}

.container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Rubik', sans-serif; /* Example font */
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-top: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #eee;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    position: relative;
    display: inline-block;
    padding: 1em 1.5em;
    margin: 1em 0;
    color: var(--neon-blue);
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 4px;
    overflow: hidden;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0003)
  }
  
  a:hover {
    background: var(--neon-blue);
    color: var(--bg);
    box-shadow: 0 0 5px var(--neon-blue), 0 0 25px var(--neon-blue), 0 0 50px var(--neon-blue), 0 0 200px var(--neon-blue);
    transition-delay: .4s;
  }
  
  a:nth-child(1) {
    filter: hue-rotate(290deg)
  }
  
  
  a:nth-child(3) {
    filter: hue-rotate(110deg)
  }
  
  a span {
    position: absolute;
    display: block;
  }
  
  a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue));
  }
  
  a:hover span:nth-child(1) {
    left: 100%;
    transition: .5s;
  }
  
  
  a span:nth-child(2) {
    top: -100%;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--neon-blue));  
  }
  
  a:hover span:nth-child(2) {
    top: 100%;
    transition: .5s;
    transition-delay: .1s;
  }
  
  
  a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    height: 2px;
    width: 100%;
    background: linear-gradient(270deg, transparent, var(--neon-blue));
  }
  
  a:hover span:nth-child(3) {
    right: 100%;
    transition: .5s;
    transition-delay: .2s;
  }
  
  a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(360deg, transparent, var(--neon-blue));
  }
  
  a:hover span:nth-child(4) {
    bottom: 100%;
    transition: .5s;
    transition-delay: .3s;
  }

/* --- Glassmorphism Box --- */
.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    width: 100%;
    text-align: center;
}

/* --- Profile Section --- */
.profile-box .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--glass-border);
}

.profile-box .bio {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Import Google Fonts */
@import url("//fonts.googleapis.com/css2?family=Space+Grotesk:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Yomogi:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

/* Heading */
.container header h1{
 font-family:'Space Grotesk', sans-serif;
 text-transform:capitalize;
 font-style:normal;
 font-weight:400;
 transform:translatex(0px) translatey(0px);
}

/* Paragraph */
.container .profile-box p{
 transform:translatex(0px) translatey(0px);
 font-family:'Yomogi', handwriting;
}

/* Heading */
.container .glass-box h2{
 font-family:'Space Grotesk', sans-serif;
}
/* --- Links Section --- */
.links-box .links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.links-box .link-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--button-hover-bg);
    border: none;
    border-radius: 8px;
    color: var(--primary-text-color);
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.links-box .link-button:hover,
.links-box .link-button:focus {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    outline: none;
}

/* --- Contact Form Section --- */
.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-box input,
.contact-box textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--form-input-border);
    background: var(--form-input-bg);
    border-radius: 8px;
    color: var(--primary-text-color);
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: var(--form-placeholder);
    opacity: 1;
}

.contact-box textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-box .submit-button {
    padding: 0.9rem 1.5rem;
    background: var(--button-hover-bg);
    border: none;
    border-radius: 8px;
    color: var(--primary-text-color);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-box .submit-button:hover,
.contact-box .submit-button:focus {
    background-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    outline: none;
}

.form-status {
    margin-top: 1rem;
    font-weight: bold;
    min-height: 1.5em;
}

/* --- Accessibility --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ... (Keep all other existing styles: body, container, glass-box, etc.) ... */

/* ===== START: UPDATED Image Track Gallery Styles ===== */
.gallery-section {
    width: 100%;
    margin-bottom: 2rem;
}

.image-track-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    cursor: grab;
    margin: 0 auto;
}

.image-track-container:active {
    cursor: grabbing;
}

#image-track {
    display: flex;
    gap: 4vmin;
    position: relative;
    transform: translateX(0%); /* Initial state */
    user-select: none;
    left: 0%;
}

/* Styles for the DIV acting as image container */
#image-track > .image {
    width: 40vmin;  /* Keep desired frame width */
    height: 56vmin; /* Keep desired frame height */
    flex-shrink: 0; /* Prevent flex items from shrinking */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    /* --- Background Image Properties --- */
    background-size: cover; /* Scale image to cover the div */
    background-position: center center; /* Default position (50% 50%) */
    /* The horizontal position will be animated by JS */
}
/* ===== END: UPDATED Image Track Gallery Styles ===== */

/* ... (Keep all other existing styles: contact form, footer, etc.) ... */