html {
    background: #000;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.5px solid #fff;
}

.navbar {
    margin: 60px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .social-icons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-left li, .social-icons a {
    margin: 0 15px;
}

.nav-left a, .social-icons img {
    color: #BF8FBF;
    text-decoration: none;
}

.logo img {
    width: 90px;
    height: 90px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

main {
    text-align: center;
    padding: 0;
    margin-top: 10px;
    flex: 1;
}

h1 {
    color: #F5605D;
    font-size: 60px;
    font-style: italic;
}

.main-photo img {
    width: 90%;
    height: auto;
    margin: auto;
}

footer {
    width: 100%;
    background-color: #993F28;
    text-align: center;
    padding: 20px;
    color: #000;
    position: relative;
}

footer img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 10px auto 0;
}

.filter-lilac {
    filter: invert(98%) sepia(87%) saturate(4714%) hue-rotate(213deg) brightness(81%) contrast(81%);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #745875;
    margin: 4px 0;
}

.mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    right: 0;
    padding: 0;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu .nav-left {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
}

.mobile-menu li {
    margin: 10px 0;
}

.mobile-menu .social-icons {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.mobile-menu .social-icons img {
    margin: 5px 10px;
    fill: #BF8FBF;
}

.mobile-menu .close-btn {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    font-size: 24px;
    color: #BF8FBF;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
        font-style: italic;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
    }

    .nav-left, .social-icons {
        display: none;
    }

    .logo {
        order: -1;
    }

    .menu-icon {
        display: flex;
    }
}

/* 🔹 Scrolling Banner Styles */
.scroll-banner {
  width: 100%;
  background: transparent;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin: 3px 0;
}

.scroll-bar {
  height: 3px;
  background-color: #993F28; /* footer color */
  width: 100%;
}

.scroll-bar.top {
  margin-bottom: 3px;
}

.scroll-bar.bottom {
  margin-top: 3px;
}

/* 🔹 Track that moves continuously */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-right 10s linear infinite;
}

/* 🔹 Text blocks inside track */
.scroll-text {
  display: flex;
  white-space: nowrap;
  color: #993F28; /* footer text color */
  font-size: 35px;
  font-weight: bold;
}

.scroll-text span {
  padding: 0 25px; /* spacing between repeats */
}

/* 🔹 Keyframes for infinite scroll (continuous rightward loop) */
@keyframes scroll-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-115%);
  }
}

/* Mobile keyframes */
@keyframes scroll-right-mobile {
  0% {
    transform: translateX(45%);
  }
  100% {
    transform: translateX(-100%); /* go farther if text is larger */
  }
}

/* Default scroll-track */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-right 10s linear infinite;
}

/* Mobile override */
@media (max-width: 768px) {
  .scroll-track {
    animation: scroll-right-mobile 7s linear infinite; /* use different keyframes */
  }
  
  .navbar {
    margin: 20px; /* shrink navbar spacing */
  }

  h1 {
    font-size: 32px; /* smaller than desktop */
  }

  body {
    overflow-x: hidden; /* stop horizontal scroll if something is slightly too wide */
  }
}
  }
}