/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Safari */
  -ms-text-size-adjust: 100%;     /* IE */
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
   overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* or use object-fit with fixed height */
}


/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
  overflow-x: hidden;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  height: auto;
  max-height: 120px;
  width: auto;
  max-width:200px;
}
.logo-icon {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #d4af37;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -75%;
  width: 75%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease-in-out;
  z-index: 99;
}
.mobile-nav ul {
  list-style: none;
  text-align: right;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.4s forwards;
  animation-delay: calc(var(--i) * 0.15s);
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  margin: 20px 0;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Background */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: fill;
  z-index: -1;
}



/* Hero Overlay */
.hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.315);
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes buttons to bottom */
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 100px;
  max-width: 800px;
  width: 100%;
}
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.hero-content.visible h1,
.hero-content.visible p {
  opacity: 1;
  transform: translateY(0);
}


.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px; /* spacing above fade */
  z-index: 7;
}


.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

/* Contact Button (gold outline on dark) */
.contact-btn {
  background-color: transparent;
  border: 2px solid #a47e00;
  color: #fff;
}
.contact-btn:hover {
  background-color: #a47e00;
  color: #000;
  transform: translateY(-2px);
}

/* Reserve Button (solid gold) */
.reserve-btn {
  background-color: #a47e00;
  color: #000;
}
.reserve-btn:hover {
  background-color: #a47e00;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(191,161,51,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .hero-btn {
    width: 100%;
    text-align: center;
  }
}



.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 5;
  pointer-events: none;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 30px;
  }
  .hero-overlay {
    padding: 80px 20px 40px;
  }
  .hero-content {
    margin-top: 100px;
    margin-bottom: 60px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-fade {
    height: 200px;
  }

      .hero-video {
    object-fit: cover; /* or contain depending on your preference */
      }

}


@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-fade {
    height: 150px;
  }

    .hero-video {
    object-fit: cover; /* or contain depending on your preference */
  }
}





/* About Tempo Section */
.about-tempo {
  padding: 80px 20px;
  background-color: #000000;
  font-family: 'Poppins', sans-serif;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-tempo .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.text-column {
  color: #fff;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #a88e5c;
  margin-bottom: 10px;
  text-transform: uppercase;
  margin-top: 0;
}

.headline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Image Stack */
.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-stack .img {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

.image-stack .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-stack .img img:hover {
  transform: scale(1.03);
}

/* Individual Image Positions */
.img1 {
  top: 9%;
  left: 36%;
  width: 90px;
  height: 90px;
  z-index: 2;
}

.img2 {
  top: -25px;
  right: -70px;
  width: 340px;
  height: 140px;
}

.img3 {
  bottom: 50px;
  left: 18%;
  width: 290px;
  height: 150px;
}

.img4 {
  bottom: -5px;
  right: -29px;
  width: 260px;
  height: 150px;
  transform: rotate(-90deg);
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  .about-tempo .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-column {
    text-align: center;
  }

  .text-column p {
    font-size: 0.95rem;
  }

  .image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: static;
  }

  .image-stack .img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .image-stack .img img {
    width: 100%;
    height: auto;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .headline {
    font-size: 1.5rem;
  }

  .text-column p {
    font-size: 0.875rem;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .image-stack {
    gap: 15px;
  }
}




.image-breaker {
  position: relative;
  height: 70vh;
  overflow: hidden;
  z-index: 0;
}

.parallax-bg {
  background-image: url('images/galla/Backkkk2.jpg');
  background-size: cover;
  background-position: center top; /* anchor top of image */
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 130vh; /* taller than container */
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}


.overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 20vh;
  font-size: 24px;
  font-weight: 600;
}




/* Tempo Services Section */
.tempo-services {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 20px;
  min-height: 70vh; /* allow content to grow naturally */
}

.services-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: #a88e5c;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.headline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-top p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 800px;
  margin-bottom: 15px;
}

/* Default: show desktop gallery, hide mobile */
.desktop-gallery { display: flex; }
.mobile-gallery { display: none; }

/* Desktop gallery styling */
.desktop-gallery {
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.desktop-gallery img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.desktop-gallery img:hover {
  transform: scale(1.05);
}

/* Tablet & Mobile: hide desktop, show auto-scrolling gallery */
/* Tablet & Mobile: hide desktop, show auto-scrolling gallery */
@media (max-width: 768px) {
  .desktop-gallery { display: none; }
  .mobile-gallery { display: block; overflow: hidden; position: relative; }

  .gallery-track {
    display: flex;
    gap: 30px; /* match desktop gap */
    animation: scrollGallery 120s linear infinite; /* slower cycle, smoother motion */
  }

  .gallery-track img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px; /* same as desktop */
    height: auto;
    object-fit: cover; /* same fit as desktop */
    border-radius: 6px;
    transition: transform 0.3s ease;
  }

  .gallery-track img:hover {
    transform: scale(1.05);
  }

  @keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-400%); } /* move full width for faster feel */
  }

  .gallery-track:hover {
    animation-play-state: paused;
  }
}

/* Mobile-specific tweaks */
@media (max-width: 480px) {
  .headline { font-size: 1.5rem; }
  .services-top p { font-size: 0.875rem; }

  .gallery-track img {
    max-width: 320px; /* keep same as desktop for consistency */
  }
}



.video-breaker {
  position: relative;
  height: 70vh;
  overflow: hidden;
  z-index: 0;
}

.parallax-video {
  position: absolute;
    top: -30%;
  left: 0;
  width: 100%;
  height: 130vh; /* taller for parallax feel */
  object-fit: cover;
  z-index: -1;
  transform: translateY(0);
  will-change: transform;
  pointer-events: none;
}

.overlay-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 20vh;
  font-size: 24px;
  font-weight: 600;
}






.tempo-place {
  position: relative;
  height: 80vh;
  background-color: #171717;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.place-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* align content to the left */
  padding: 60px 20px;
  padding-left: 80px;            /* extra breathing room on the left */
  z-index: 2;
}

.place-text {
  width: 50%;
  max-width: 600px;
  z-index: 3;
  text-align: left;              /* ensure text aligns left */
}

.section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #a88e5c;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.headline {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.place-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

.place-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .place-container {
    justify-content: center;       /* center the text block horizontally */
    padding-left: 20px;            /* remove left bias */
    padding-right: 20px;
    text-align: center;
  }

  .place-text {
    width: 100%;
    max-width: 90%;
    text-align: center;            /* center text alignment */
  }

  .headline {
    font-size: 24px;
  }

  .place-text p {
    font-size: 14px;
  }

  /* Overlay only on mobile */
  .place-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.621); /* semi-transparent dark overlay */
    z-index: 2;                  /* sits above the image */
  }

  .place-text {
    position: relative;
    z-index: 3; /* ensures text stays above overlay */
  }
}






.second-breaker .parallax-bg {
  background-image: url('images/galla/galla38.jpg'); /* replace with your second image */
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 130vh;
  transform: translateY(0);
  will-change: transform;
  z-index: -1;
}








/* Chef Message Section */
.chef-message {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 70vh; /* allow content to grow naturally */
}

.chef-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.chef-media {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* ensures wrapping on narrow screens */
}

.chef-video {
  width: 270px;
  height: 370px;
  object-fit: cover;
  pointer-events: none;
  border-radius: 6px;
}

.chef-image {
  width: 270px;
  height: 370px;
  object-fit: cover;
  border-radius: 6px;
}

.chef-content {
  text-align: center;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chef-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #a88e5c;
}

.chef-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 10px;
}

.chef-content h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #a88e5c;
  letter-spacing: 2px;
}

.signature-text {
  font-size: 1.25rem;
  color: #fff;
  opacity: 0.8;
  margin-top: -5px;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  .chef-message {
    padding: 40px 20px;
    min-height: auto;
  }

  .chef-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .chef-media {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .chef-video,
  .chef-image {
    width: 200px;
    height: auto;
    max-width: 280px;
  }

  .chef-content {
    max-width: 90%;
  }

  .chef-content h2 {
    font-size: 1.25rem;
  }

  .chef-content p {
    font-size: 0.9rem;
  }

  .chef-content h3 {
    font-size: 0.9rem;
  }

  .signature-text {
    font-size: 1.1rem;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .chef-media {
    flex-direction: column; /* stack video and image vertically */
    gap: 20px;
  }

  .chef-video,
  .chef-image {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .chef-content h2 {
    font-size: 1.1rem;
  }

  .chef-content p {
    font-size: 0.85rem;
  }

  .signature-text {
    font-size: 1rem;
  }
}





/* Awards Section */
.awards-section {
  width: 100%;
  background-color: #000;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.awards-header {
  text-align: center;
  margin-bottom: 40px;
  z-index: 1000;
}

.awards-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #fff;
}

.gallery-divider {
  width: 80px;
  height: 2px;
  background: #bfa133;
  margin: 14px auto 0;
  border-radius: 2px;
  margin-bottom: 5%;
}

.awards-year {
  font-size: 0.875rem;
  color: #a88e5c;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.awards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.award-item {
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 180px;
  flex: 1 1 120px; /* flexible sizing */
}

.award-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.award-caption {
  font-size: 0.75rem;
  color: #a88e5c;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effect only on desktop */
@media (min-width: 769px) {
  .award-item:hover img {
    transform: translateY(-8px);
  }

  .award-item:hover .award-caption {
    opacity: 1;
  }
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
  .awards-section {
    padding: 40px 20px;
  }

  .awards-header h2 {
    font-size: 1.6rem;
  }

  .awards-year {
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .awards-row {
    gap: 20px;
    margin-bottom: 30px;
  }

  .award-item {
    max-width: 120px;
    flex: 1 1 100px;
  }

  .award-caption {
    font-size: 0.7rem;
    opacity: 1; /* always visible on mobile */
    text-align: center;
    margin-top: 6px;
  }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
  .awards-header h2 {
    font-size: 1.4rem;
  }

  .awards-row {
    gap: 15px;
  }

  .award-item {
    max-width: 100px;
    flex: 1 1 80px;
  }

  .award-caption {
    font-size: 0.65rem;
  }
}





.tempo-footer {
  background-color: #171717;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px;
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Branding */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 1.1rem;
  color: #a88e5c;
  margin-bottom: 15px;
}
.footer-reserve-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bfa133;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.footer-reserve-btn:hover {
  background-color: #d7b94e;
  box-shadow: 0 0 12px rgba(191,161,51,0.4);
}

/* Contact Info */
.footer-contact {
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a {
  color: #a88e5c;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #ffffff;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-socials a {
  font-size: 16px;
  color: #a88e5c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-socials a:hover {
  color: #ffffff;
}

/* Copyright */
.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-socials {
    flex-direction: column;
    gap: 15px;
  }
  .footer-reserve-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
  .footer-contact p {
    font-size: 15px;
  }
  .footer-tagline {
    font-size: 1rem;
  }
}
