@charset "UTF-8";
/*colors
#1a1a1a   - Body background (deep charcoal)
#f9f9f9   - Main text color (off-white)
#ff00ff   - Primary neon pink (hero text, accents, hovers)
#00ffff   - Secondary neon cyan (links, h2, nav hover)
#ffff00   - Highlight yellow (glow effects)
#000000   - Pure black (footer, nav background)
#ffffff   - White text (on colored backgrounds)
rgba(...) - Transparent gradient overlays
*/

/* reset and body  */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway Dots', cursive;
    background-color: #1a1a1a;
    color: #f9f9f9;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
/*Hero Section */
.hero {
    background-image: url('../images/disco_bowl2.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ff00ff;
    position: relative;
}

.hero h1 {
    font-family: 'Monoton', cursive;
    padding-top: clamp(160px, 20vh, 280px);  /* scales with screen height - what a huge pain in the ass to figure this one out. Thank you google, it was hopping around and being so weird before this when changing scrren sizes*/
    margin-top: 35px;
    font-size: clamp(50px, 6vw, 86px);       /* scales smoothly */
    text-shadow: 2px 2px 10px #ff00ff;
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
    text-align: center;
    transition: font-size 0.3s ease, padding-top 0.3s ease, line-height 0.3s ease;
}


.hero h2 {
    font-family: 'Raleway Dots', cursive;
    font-size: 40px;
    margin-top: 240px;
}

/* Home page hero image height adjustment */
.index-hero {
    height: calc(100vh - 50px);
}

/*All H2s */
h2 {
    font-family: 'Monoton', cursive;
    font-size: clamp(32px, 4vw, 40px);
    color: #00ffff;
    margin: 10px 0 20px;
    text-align: center;
    padding: 20px 0 10px;
    line-height: 1.2;
    word-break: break-word;
}

/* NAV Bar */
.main-nav {
    background-color: #000000;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: #00ffff;
    text-decoration: none;
    font-size: 30px;
    padding: 8px 12px;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.main-nav a:hover {
    background-color: #ff00ff;
    color: #000000;
    border-radius: 5px;
}

/* Intro sections */
.intro {
    padding: 15px 20px;
    text-align: center;
}

.intro h3 {
    font-size: 24px;
    color: #00ffff;
    font-family: 'Monoton', cursive;
    margin: 10px 0px 10px;
    text-align: center;
}

.intro-heading {
font-family: 'Monoton', cursive;
font-size: 40px;
color: #00ffff;
margin-bottom: 20px;
text-align: center;
padding-top: 30px;
line-height: 1.2;
word-break: break-word;
}

.intro p {
    font-size: 19.2px;
    max-width: 800px;
    margin: 10px auto;
}

.intro ul {
    margin-top: 25px; /* Adds space above the list */
    list-style: none;
    padding: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
}


/* Copy/ Match intro ULs with disco menu vibes */
.intro ul li {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #f9f9f9;
    font-weight: bold;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 255, 0.2),
        rgba(0, 255, 255, 0.2),
        rgba(255, 255, 0, 0.2)
);
    box-shadow:
        0 0 5px #ff00ff,
        0 0 10px #00ffff,
        0 0 15px #ffff00;
    transition: transform 0.3s ease;
}

.intro ul li:hover {
    transform: scale(1.03);
    background: linear-gradient(
        45deg,
        rgba(255, 0, 255, 0.4),
        rgba(0, 255, 255, 0.4),
        rgba(255, 255, 0, 0.4)
      );
    }


/* Menu on Food Page */
.menu {
    padding: 40px 20px;
}

.menu h3 {
    font-family: 'Monoton', cursive;
    font-size: 28px;
    color: #ff00ff;
    margin: 30px 0 10px;
    text-align: center;
}

.menu ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 10px auto 40px;
    text-align: center;
}
.menu li {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #f9f9f9;
    font-weight: bold;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 255, 0.2),
        rgba(0, 255, 255, 0.2),
        rgba(255, 255, 0, 0.2)
      );
    box-shadow:
        0 0 5px #ff00ff,
        0 0 10px #00ffff,
        0 0 15px #ffff00;
    transition: transform 0.3s ease;
}

.menu li:hover {
    transform: scale(1.03);
    background: linear-gradient(
        45deg,
        rgba(255, 0, 255, 0.4),
        rgba(0, 255, 255, 0.4),
        rgba(255, 255, 0, 0.4)
      );
    }

/*Events*/
.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    max-width: 1000px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}


.event-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff00ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: scale(1.03);
}

.event-card h3 {
    font-family: 'Monoton', cursive;
    color: #ff00ff;
    font-size: 24px;
    margin-bottom: 10px;
}

.event-card p {
    font-size: 16px;
    color: #f9f9f9;
    line-height: 1.5;
}

/* RSVP Button */
.rsvp-button {
    display: inline-block;
    margin-top: 15px;
    background-color: #ff00ff;
    color: #000000;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Raleway Dots', cursive;
}

.rsvp-button:hover {
    background-color: #00ffff;
    color: #000000;
}

/* CONTACT FORM */
.contact-form {
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid #ff00ff;
    border-radius: 12px;
    padding: 30px;
    box-shadow:
        0 0 10px #ff00ff,
        0 0 20px #00ffff,
        0 0 30px #ffff00;
    max-width: 600px;
    margin: 40px auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 2px solid #00ffff;
    background-color: #1a1a1a;
    color: #f9f9f9;
    font-family: 'Raleway Dots', cursive;
    font-size: 16px;
    box-shadow: inset 0 0 5px #00ffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
}

.contact-form button {
    background: #ff00ff;
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Raleway Dots', cursive;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    background-color: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    color: #000;
}

/* Footer*/
footer {
    background-color: #000;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    margin-top: 15px;
    overflow: hidden;
}

.footer-banner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 280px;
    overflow: visible; /* allow text to show if it overflows */
}

.footer-banner img {
    width: 100%;
    height: auto; /* Let image scale proportionally */
    object-fit: cover;
    display: block;
    max-height: 400px; /* Optional: limit height for very tall images */
}

.footer-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #ff00ff;
    font-family: 'Raleway Dots', cursive;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    width: 95%;
    max-width: 1000px;
    box-sizing: border-box;
    overflow-wrap: break-word;
}



/*open 11-close*/
.neon-text {
    font-family: 'Monoton', cursive;
    font-size: 30px; 
    color: #ff00ff;  
    text-shadow:
        0 0 5px #ff0055,
        0 0 10px #ff0055,
        0 0 20px #ff0055,
        0 0 40px #ff0055;
      animation: pulse 2s infinite ease-in-out;
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.menu li {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
    border: 1px solid #ff00ff;
}

/* Disco glow background color cycling- 
Inspired by neon UI palettes from https://coolors.co*/
.menu li:nth-child(7n+1) {
  background-color: #330033;
}
.menu li:nth-child(7n+2) {
  background-color: #003333;
}
.menu li:nth-child(7n+3) {
  background-color: #1a0033;
}
.menu li:nth-child(7n+4) {
  background-color: #331a00;
}
.menu li:nth-child(7n+5) {
  background-color: #002233;
}
.menu li:nth-child(7n+6) {
  background-color: #33001a;
}
.menu li:nth-child(7n+7) {
  background-color: #222222;
}

/* PARALLAX BACKGROUNDS */
.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
}

/*short +fixed heaight images*/
.short-parallax {
    height: 60vh;
    min-height: 300px;
}


/* Parallax Images in page order */
.parallax-bowler {
    background-image: url('../images/bowler.jpeg');
}
.parallax-pins {
    background-image: url('../images/bowling_pins.jpeg');
}
.parallax-bar {
    background-image: url('../images/bar.jpeg');
}
.parallax-diner {
    background-image: url('../images/diner.jpeg');
}
.parallax-food {
    background-image: url('../images/food.jpeg');
}
.parallax-friends {
    background-image: url('../images/friends1.jpeg');
}
.parallax-balls {
    background-image: url('../images/balls.jpeg');
}
.parallax-balls2 {
    background-image: url('../images/balls2.jpeg');
}

/* Animation created using custom keyframes. 
   Referenced concepts from MDN and CSS-Tricks */
@keyframes rollBall {
  0% {
    left: -200px;              /* Start off-screen to the left */
    transform: rotate(0deg);   /* Start with no rotation */
    opacity: 0;                /* Invisible at first */
  }
  10% {
    opacity: 1;                /* Quickly become visible */
  }
  100% {
    left: 100vw;               /* Move completely across the screen- out of sight */
    transform: rotate(720deg); /* Spin 720 degrees (2 full rotations) */
    opacity: 1;                /* Fully visible */
  }
}
.disco-ball {
  position: absolute;
  top: 10%;
  left: -1000px; /* Start off-screen left */
  width: 900px;
  height: 900px;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  animation: rollBall 3s ease-in-out forwards, glowPulse 2s infinite ease-in-out;
  box-shadow:
    0 0 30px 15px #ff00ff,
    0 0 60px 20px #00ffff,
    0 0 90px 25px #ffff00;
}
/*.disco-ball {
    position: fixed;
    top: 10%;
    width: 900px;
    height: 900px;
    z-index: 9999;
    animation: rollBall 3s ease-out forwards, glowPulse 2s infinite ease-in-out;
    pointer-events: none;  so disco ball won't block or respond to user input
    border-radius: 50%;
    box-shadow:
        0 0 30px 15px #ff00ff,
        0 0 60px 20px #00ffff,
        0 0 90px 25px #ffff00;
}*/

/*.disco-ball {
    position: absolute;
    top: 20px;
    left: -1000px; 
    width: 990px;
    height: 990px;
    animation: rollBall 3s ease-out forwards, glowPulse 2s infinite ease-in-out;
    border-radius: 50%;
    z-index: 9999;
    box-shadow:
        0 0 20px #ff00ff,
        0 0 40px #00ffff,
        0 0 60px #ffff00;
}*/

/* Animation created (Inspired, I made adjustments) using CSS @keyframes with box-shadow techniques */
/* Reference: MDN Web Docs – CSS Animations: https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes */

.disco-wrapper {
  position: relative;
  height: 1000px; /* enough to contain the ball */
  overflow: visible;
}

/*@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 30px 0 #ff00ff,
      0 0 50px -10px #00ffff,
      0 0 70px -20px #ffff00;
  }
  50% {
    box-shadow:
      0 0 40px 5px #ff00ff,
      0 0 60px -5px #00ffff,
      0 0 80px -10px #ffff00;
  }
}
/*.disco-wrapper {
    position: relative;
    height: 150px;
    overflow: hidden;
    margin-bottom: 30px;
}*/


@keyframes rollBall {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(3000px) rotate(720deg); /* extended further */
  }
}

/* Media queries */
@media screen and (max-width: 650px) {
  .intro-heading,
  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero h1 {
    white-space: normal;
    font-size: 48px;
    line-height: 1.3;
  }

  .parallax-diner {
    background-position: right top;
    background-size: 100%;
    height: 400px;
    margin-bottom: 100px;
  }

  .short-parallax {
    height: 200px;
  }

  .main-nav {
    margin-top: -4px;
  }

  .parallax + .main-nav {
    margin-top: -4px;
  }

  .menu {
    padding-top: 25px;
  }

  .menu h3 {
    margin-top: 15px;
  }

  .parallax-food {
    background-position: right center;
    background-size: 150%;
    height: 300px;
  }

  .parallax-bowler {
    background-size: 140%;
    background-position: center top;
    height: 290px;
    margin-bottom: -10px;
  }

  .parallax-friends {
    background-size: 100%;
    background-position: center top;
    height: 250px;
  }

  .parallax-balls2 {
    background-position: center top;
    background-size: 150%;
    height: 400px;
  }

  /* Responsive image when small er size */
  img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    transition: opacity 0.5s ease-in-out;
    display: block;
  }
}
/* GLOBAL ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE IMAGE */
img {
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  transition: opacity 0.5s ease-in-out;
  display: block;
}

/* DESKTOP STYLES (min-width: 650px) */
@media screen and (min-width: 650px) {
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-banner {
    height: 280px;
  }

  .footer-banner img {
    height: 100%;
    object-fit: cover;
  }

  .footer-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #ff00ff;
    font-family: 'Raleway Dots', cursive;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
  }
}

/* MOBILE STYLES (max-width: 649px) */
@media screen and (max-width: 649px) {
  .intro-heading,
  h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero h1 {
    white-space: normal;
    font-size: 48px;
    line-height: 1.3;
  }

  .main-nav,
  .parallax + .main-nav {
    margin-top: -4px;
  }

  .menu {
    padding-top: 25px;
  }

  .menu h3 {
    margin-top: 15px;
  }

  .parallax-diner {
    background-position: right top;
    background-size: 100%;
    height: 400px;
    margin-bottom: 100px;
  }

  .short-parallax {
    height: 200px;
  }

  .parallax-food {
    background-position: right center;
    background-size: 150%;
    height: 300px;
  }

  .parallax-bowler {
    background-size: 140%;
    background-position: center top;
    height: 290px;
    margin-bottom: -10px;
  }

  .parallax-friends {
    background-size: 100%;
    background-position: center top;
    height: 250px;
  }

  .parallax-balls2 {
    background-position: center top;
    background-size: 150%;
    height: 400px;
  }

  .footer-banner {
    height: auto;
    padding-bottom: 20px;
  }

  .footer-banner img {
    height: 200px;
    object-fit: cover;
  }

  .footer-text-overlay {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 0;
    text-align: center;
  }
}


@media screen and (max-width: 650px) {
  .disco-ball {
    width: 70vw;
    aspect-ratio: 1 / 1;
    height: auto !important; /* ensure it doesn’t override aspect-ratio */
    max-width: 300px;
  }
}


