/* Full viewport background */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #000;
}
@font-face {
  font-family: 'MyCustomFont';
  src: url('/fonts/Playball-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
h1 {
	font-family: 'MyCustomFont';
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;

    /* neon glow */
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff;
}
/* Scene container keeps original image aspect ratio */
/*
.scene {
    position: relative;
    width: 100%;
    max-width: 1920px; 
    aspect-ratio: 1920 / 1080; 
}*/
#stage {
  position: fixed;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: calc(100vw * 9 / 16);

  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media (max-aspect-ratio: 16/9) {
  #stage {
    width: calc(100vh * 16 / 9);
    height: 100vh;
  }
}
.scene,
#transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
object-fit: cover;
}




#transition-video {
position: absolute;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  aspect-ratio: 1280 / 720;

  object-fit: cover;
  transition: opacity 0.4s ease;
}

.scene.active {
  opacity: 1;
}
.scene img {
filter: contrast(1) saturate(1);
}

.scene video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}
/* video overlay layer */
#diner-transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
object-fit: cover;
filter: contrast(1) saturate(1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#diner-transition-video.active {
  opacity: 1;
  z-index: 50;
  object-fit: cover;
}

#studio-transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
object-fit: cover !important;
filter: contrast(1) saturate(1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#studio-transition-video.active {
  opacity: 1;
  z-index: 50;
  
}
/* The visible area (acts like a mask) */
.blackboard-window {
  position: absolute;

  /* Position relative to main image */
  top: 3.4%;     /* distance from top of main image */
  left: 62.5%;    /* distance from left */

  /* Size relative to main image */
  width: 34.6%;   /* scales with image */
  height: auto; /* keep aspect ratio */
  z-index: 1;
}
/* The tall image inside */
.blackboard {
  width: 100%;
  height: auto;
  position: relative;
}
.blackboard {
  animation: slideAd 30s infinite;
}

@keyframes slideAd {
  0%   { transform: translateY(0); }
  45%  { transform: translateY(0); }

  50%  { transform: translateY(-50%); }
  95%  { transform: translateY(-50%); }

  100% { transform: translateY(0); }
}


.menu {
    position: absolute; /* or fixed (see below) */
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999; /* 🔥 ensure it's above everything */

    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);

    border-bottom: 2px solid #00008B;
/* 🔥 allow expansion */
overflow: visible;
transition: height 0.4s ease;
}
.menu-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
	color: #ffffff;
    transform: translateY(-10px);
    opacity: 0;
padding: 6px 10px;
    pointer-events: none;
background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
}
.menu.expanded .menu-info {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
/* inner layout */
.menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */
.logo {
  	font-family: 'MyCustomFont';
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;

    /* neon glow */
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff;
}
.menu-links a.active {
    color: #fff;

    text-shadow:
        0 0 5px #fff,
        0 0 15px #ff00cc,
        0 0 30px #ff00cc;

    border-bottom: 2px solid #ff0000;
}

/* links */
.menu-links a {
    margin-left: 25px;
    text-decoration: none;
    font-size: 18px;

    color: #00ffff;

    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff;

    transition: 0.2s;
}

/* hover effect */
.menu-links a:hover {
    color: #fff;

    text-shadow:
        0 0 5px #fff,
        0 0 15px #ff00cc,
        0 0 25px #ff00cc;
}

.copyright-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    border: 1px solid #00ffff;
    border-radius: 50%;

    font-size: 11px;
    font-weight: bold;

    color: #ffffff;

    text-shadow: 0 0 5px #00ffff;
    margin-right: 4px;
}
.about-box {
    position: absolute;

    top: 30%;
    left: 50%;
    transform: translateX(-50%);

    width: 60%;
    max-width: 700px;

    padding: 25px 30px;

    /* retro diner sign look */
    background: #f5e6c8;
    border: 4px solid #b22222;
    border-radius: 8px;

    box-shadow:
        0 0 10px rgba(0,0,0,0.5),
        inset 0 0 10px rgba(0,0,0,0.3);

    z-index: 3;
}

/* heading */
.about-box h1 {
    margin-top: 0;
    font-size: 28px;
    text-align: center;

    font-family: "Arial Black", Impact, sans-serif;
    color: #111;
}

/* text */
.about-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}
.player-wrap {
  position: absolute;

  top: 14%;
  left: 49%;
  width: 42%;
  height: 35%;

  transform: perspective(900px)
             rotateX(4deg)
             rotateY(-15deg)
             rotateZ(-4deg)
             skewX(-3deg);

  transform-origin: center;
  z-index: 5;
}

#player {
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube player positioned proportionally */
#playerold {
    position: absolute;
	border: 2px solid red;
    /* Use percentages relative to container */
    top: 14%;    /* adjust to fit screen */
    left: 49%;
    width: 42%;
    height: 35%;
    border: none;

    transform: perspective(900px) rotateX(4deg) rotateY(-15deg) rotateZ(-4deg) skewX(-3deg) skewY(0deg);
    z-index: 5;
}
.scene iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Diner image covers container */
.diner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
object-fit: cover;
z-index: 2;
}

/*.ticker {
    position: absolute;

    bottom: 38.4%;
    left: 22%;
    width: 6%;
    height: 6%;
	

    overflow: hidden;
    z-index: 1;
}*/
.ticker {
    position: absolute;
    overflow: hidden;
	bottom: 42.3%;
    left: 22%;
    width: 6.6%;
    height: 2%;

    /* Marquee background */
    /*background: #f5e6c8; */ /* warm cream */
background: linear-gradient(
        to bottom,
        #fff2d6 0%,
        #f5e6c8 40%,
        #e8d7b5 100%
    );

    /* Optional inset shadow for depth */
   box-shadow:
        0 0 8px rgba(255, 200, 120, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.4);

    /*padding: 5px 0; */
    z-index: 1;
}



/* scrolling text */
.ticker-text {
    position: absolute;
    white-space: nowrap;
    color: #111;
    font-weight: bold;
    filter: blur(0.2px);


	text-shadow:
        0 0 2px rgba(255, 200, 100, 0.6),
        0 0 4px rgba(255, 180, 80, 0.4);
    /* Classic cinema font feel */
    /*font-family: "Arial Black", Impact, sans-serif; */
font-family: 'Oswald', sans-serif;
    font-size: 0.6vw;
    letter-spacing: 2px;

    /* start just outside the right edge */
    left: 100%;

    animation: scrollText 18s linear infinite;
}


@keyframes scrollText {
    0% {
        transform: translateX(0);       /* starts at right edge */
    }
    100% {
        transform: translateX(-125%);  /* moves across its own width */
    }
}

.ticker2 {
    position: absolute;
    overflow: hidden;
	bottom: 39.2%;
    left: 22%;
    width: 6.6%;
    height: 2.5%;

   background: linear-gradient(
        to bottom,
        #fff2d6 0%,
        #f5e6c8 40%,
        #e8d7b5 100%
    );

    /* Optional inset shadow for depth */
   box-shadow:
        0 0 8px rgba(255, 200, 120, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.4);

    z-index: 1;
}



/* scrolling text */
.ticker-text2 {
    position: absolute;
    white-space: nowrap;
    color: #111;
    font-weight: bold;

    /* Classic cinema font feel */
 filter: blur(0.2px);


	text-shadow:
        0 0 2px rgba(255, 200, 100, 0.6),
        0 0 4px rgba(255, 180, 80, 0.4);
    /* Classic cinema font feel */
    /*font-family: "Arial Black", Impact, sans-serif; */
font-family: 'Oswald', sans-serif;
    font-size: 0.6vw;
    letter-spacing: 2px;

    /* start just outside the right edge */
    left: 100%;

    animation: scrollText2 8s linear infinite;
}

@keyframes scrollText2 {
    0% {
        transform: translateX(0);       /* starts at right edge */
    }
    100% {
        transform: translateX(-200%);  /* moves across its own width */
    }
}
/* Tickers for about page */
.ticker3 {
    position: absolute;
    overflow: hidden;
	bottom: 55%;
    left: 12.3%;
    width: 7.88%;
    height: 2.5%;

   background: linear-gradient(
        to bottom,
        #fff2d6 0%,
        #f5e6c8 40%,
        #e8d7b5 100%
    );

    /* Optional inset shadow for depth */
   box-shadow:
        0 0 8px rgba(255, 200, 120, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.4);

   
	transform: perspective(900px) rotateZ(1.2deg);
    /*padding: 5px 0; */
    z-index: 1;
}



/* scrolling text */
.ticker-text3 {
    position: absolute;
    white-space: nowrap;
    color: #111;
    font-weight: bold;

     filter: blur(0.2px);


	text-shadow:
        0 0 2px rgba(255, 200, 100, 0.6),
        0 0 4px rgba(255, 180, 80, 0.4);
    /* Classic cinema font feel */
    /*font-family: "Arial Black", Impact, sans-serif; */
font-family: 'Oswald', sans-serif;
    font-size: 0.7vw;
    letter-spacing: 2px;

    /* start just outside the right edge */
    left: 100%;

    animation: scrollText3 5s linear infinite;
}

@keyframes scrollText3 {
    0% {
        transform: translateX(0);       /* starts at right edge */
    }
    100% {
        transform: translateX(-200%);  /* moves across its own width */
    }
}
.ticker4 {
    position: absolute;
    overflow: hidden;
	bottom: 52.1%;
    left: 12.3%;
    width: 7.9%;
    height: 2.5%;

    background: linear-gradient(
        to bottom,
        #fff2d6 0%,
        #f5e6c8 40%,
        #e8d7b5 100%
    );

    /* Optional inset shadow for depth */
   box-shadow:
        0 0 8px rgba(255, 200, 120, 0.2),
        inset 0 2px 4px rgba(0,0,0,0.4);

   
	transform: perspective(900px) rotateZ(1.2deg);
    /*padding: 5px 0; */
    z-index: 1;
}



/* scrolling text */
.ticker-text4 {
    position: absolute;
    white-space: nowrap;
    color: #111;
    font-weight: bold;

     filter: blur(0.2px);


	text-shadow:
        0 0 2px rgba(255, 200, 100, 0.6),
        0 0 4px rgba(255, 180, 80, 0.4);
    /* Classic cinema font feel */
    /*font-family: "Arial Black", Impact, sans-serif; */
font-family: 'Oswald', sans-serif;

    font-size: 0.7vw;
    letter-spacing: 2px;

    /* start just outside the right edge */
    left: 100%;

    animation: scrollText4 20s linear infinite;
}

@keyframes scrollText4 {
    0% {
        transform: translateX(0);       /* starts at right edge */
    }
    100% {
        transform: translateX(-150%);  /* moves across its own width */
    }
}
/* Video gallery container */
.video-gallery {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* full width */
    display: flex;
    align-items: center;
    height: 120px; /* adjust to thumbnail size */
    z-index: 10;
}

/* Scroll arrows */
.nav {
    flex: none;
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 5px;
    z-index: 15;
    height: 100%;
}

/* Left and right positioning */
#scrollLeft {
    margin-right: 10px;
}
#scrollRight {
    margin-left: 10px;
}

/* Thumbnails container */
.video-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    flex: 1; /* fill remaining width between arrows */
    height: 100%;
}

/* Individual thumbnail */
.thumb {
    height: 100%; /* fill gallery height */
    width: auto;   /* keep aspect ratio */
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
    transition: transform 0.2s;
}

.thumb:hover {
    transform: scale(1.05);
}
.menu-board {
  position: absolute;

  /* 👇 POSITION THIS OVER YOUR MENU */
  left: 58%;
  top: 21.2%;
  width: 22%;
  height: 13%;
  z-index: 5;

  display: flex;
  flex-direction: column;
  object-fit: cover;


  /* 🔥 perspective distortion */
  transform: perspective(800px)
             rotateY(-27deg)
             skewY(-5.8deg);

  transform-origin: left center;
}

  .menu-row {
  	position: relative;
    flex: 1 1 0;
 	 min-height: 0;
    border: 0px solid rgba(255,255,255,0.25);
	background: transparent;    
  	transition: background 0.2s;
  }

  .menu-row:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  /* debug labels */
  .menu-row::after {
    content: attr(data-label);
    color: white;
    font-size: 14px;
    position: absolute;
    left: 10px;
  }

.clock-container {
  position: absolute;
  width: 7.8%;
  top: 0.6%;
  left: 30.9%;
  height: 13.6%;
 z-index: 999;
  perspective: 800px; /* 🔥 important */
}

.clock-image {
  width: 100%;
  display: block;
}

/* Overlay sits exactly on top */
.clock-overlay::before {
  content: "";
  position: absolute;
  inset: 0;

  

  pointer-events: none;
}
.clock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
transform-style: preserve-3d;
  transform: translate(-50%, -50%)
             rotateY(-44deg)   /* horizontal angle */
             rotateX(-5deg)    /* vertical tilt */
             rotateZ(1deg);   /* slight twist if needed */

  transform-origin: center;
}
.clock-overlay::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;

  background: radial-gradient(circle, #222, #666);
  border-radius: 50%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 10;
}

/* Hands */
.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
opacity: 0.92;
}
.hour {
  width: 4px;
  height: 35%;
  background: linear-gradient(to top, #2a2a2a 60%, #666);
  border-radius: 6px;

}

.minute {
  width: 2px;
  height: 45%;
  background: linear-gradient(to top, #2a2a2a 60%, #777);
  border-radius: 6px;
}

.second {
  width: 1px;
  height: 48%;
  background: linear-gradient(to top, red 80%, #ff6666);
  border-radius: 2px;
}

.credit {
    position: absolute;
    bottom: 0.5%;
    width: 100%;
    text-align: center;
	z-index: 99999;
	opacity: 0.6;

    font-size: 0.7vw;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.6);

    font-family: 'Oswald', sans-serif;

    pointer-events: none;

    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}