:root {
    --black: #111;
    --gray: #777;
    --light: #f7f7f7;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  body {
    background: white;
    color: var(--black);
    line-height: 1.6;
  }
 
 /* ===== HEADER ===== */
.site-header {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.header-logo {
  width: 220px;       /* BIG on desktop */
  max-width: 80vw;
  height: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .header-logo {
    width: 180px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 5px 16px;
  }

  .header-logo {
    width: 140px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .header-logo {
    width: 180px;
  }
}


 /* ================= CINEMATIC LOADER ================= */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .loader-inner {
    text-align: center;
  }
  
  #year {
    font-size: 120px;        /* BIG size */
    font-weight: 700;         /* Bold, cinematic */
    letter-spacing: 12px;     /* Spacious, premium */
    color: white;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  /* Fade out */
  #loader.fade-out {
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  
  
  #year {
    font-size: 42px;
    letter-spacing: 6px;
    font-weight: 300;
  }
  
  .loader-line {
    width: 120px;
    height: 1px;
    background: white;
    margin: 20px auto 0;
    opacity: 0.6;
    animation: lineFade 1.8s ease forwards;
  }
  
  @keyframes lineFade {
    0% { width: 0; opacity: 0; }
    40% { width: 120px; opacity: 0.6; }
    100% { opacity: 0; }
  }
  
  
  /* ================= HERO ================= */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  /* Logo container */
  .hero-logo {
    width: 180px; /* size of your logo */
    height: auto;
    margin-bottom: 30px;
    animation: float 2s ease-in-out infinite;
  }
  
  /* Logo image */
  .hero-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Floating animation */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
  }
  
  /* Hero heading & paragraph */
  .hero h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
  }
  
  .hero p {
    margin-top: 16px;
    color: #777;
    font-size: 16px;
    letter-spacing: 2px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-logo {
      width: 120px;
    }
    .hero h1 {
      font-size: 36px;
    }
    .hero p {
      font-size: 14px;
    }
  }
  /* ================= HERO BACKGROUND IMAGE ================= */

.hero {
  position: relative;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/HOJ\ BANNER\ 2.jpg"); /* CHANGE IMAGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;

  /* Cinematic zoom */
  animation: heroZoom 18s ease-in-out infinite alternate;
}

/* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

/* Zoom animation */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: center top;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.45);
  }
}

  


/* ===== VIDEO SCROLL GALLERY (770x1080 Responsive) ===== */

.gallery {
  overflow-x: hidden;
  padding: 80px 0;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 20s linear infinite;
}

/* Maintain 770:1080 aspect ratio */
.gallery-item {
  aspect-ratio: 770 / 1080;
  width: 320px;               /* desktop display size */
  max-width: 80vw;
  background: #000;
  overflow: hidden;
  border-radius: 15px;
}

/* Video behavior */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* NO stretching */
}

/* Pause on hover */
.gallery:hover .gallery-track {
  animation-play-state: paused;
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-item {
    width: 260px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-item {
    width: 60vw;
  }
}

/* Auto-scroll animation */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

  /* ================= SECTIONS ================= */
  .section {
    padding: 120px 20px;
    text-align: center;
  }
  
  .section h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
  }
  
  .section p {
    max-width: 640px;
    margin: auto;
    color: var(--gray);
    font-size: 15px;
  }
  .about p {
    font-size: 18px;       /* bigger and readable */
    color: #555;           /* softer contrast for luxury feel */
    max-width: 720px;
    margin: 20px auto;
    line-height: 2;        /* airy spacing for elegance */
  }
  /* ================= LOYALTY SECTION ================= */

.loyalty-section {
  padding: 120px 20px;
  background: #fff;
}

.loyalty-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* Individual box */
.loyalty-box {
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
}

/* Headings */
.loyalty-box h2 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* Inputs */
.loyalty-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Button */
.loyalty-box button {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.loyalty-box button:hover {
  opacity: 0.85;
}

/* Info text */
.loyalty-box .info {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
  .loyalty-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loyalty-box {
    padding: 30px 20px;
  }
}


  
/* ===== PREMIUM FOOTER ===== */

.premium-footer {
  background: #000;
  color: #ccc;
  padding: 80px 20px 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.footer-logo {
  width: 120px;
  margin-bottom: 5px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #aaa;
}

/* CENTER */
.footer-center h4 {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #fff;
}

.footer-center p {
  font-size: 14px;
  margin-bottom: 16px;
  color: #aaa;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
}

.footer-center a:hover {
  opacity: 0.7;
}

.footer-note {
  font-size: 12px;
  color: #777;
  margin-top: 30px;
  line-height: 1.6;
}

/* RIGHT */
.footer-right iframe {
  width: 100%;
  height: 240px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
  border-radius: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-right {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    margin: -20px auto 5px;
  }
  .footer-address {
    font-size: 8px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #aaa;
  }
  .footer-right iframe {
    height: 220px;
  }
}
/* ===== ADMIN FOOTER ACCESS ===== */

.admin-footer {
  margin-top: 60px;
  text-align: center;
}

.admin-toggle {
  background: transparent;
  border: 1px solid #333;
  color: #777;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 18px;
  cursor: pointer;
}

.admin-toggle:hover {
  color: #fff;
  border-color: #555;
}

.admin-login {
  display: none;
  margin-top: 15px;
  max-width: 260px;
  margin-inline: auto;
}

.admin-login input {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.admin-login button {
  background: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 8px;
  border: none;
  cursor: pointer;
}

/* ===== ADMIN PANEL ===== */

.admin-panel {
  display: none;
  background: #000;
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid #222;
  max-width: 420px;
  margin-inline: auto;
}

.admin-panel h3 {
  text-align: center;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 30px;
}

.admin-panel input {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.admin-panel button {
  background: #fff;
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px;
  border: none;
  cursor: pointer;
}

#customerInfo {
  display: none;
  margin-top: 20px;
  font-size: 14px;
}

  




.admin-footer {
  text-align: center;
  margin-top: 40px;
}

.admin-toggle {
  background: transparent;
  color: #777;
  border: 1px solid #444;
  padding: 8px 16px;
  letter-spacing: 2px;
  cursor: pointer;
}

.admin-login {
  margin-top: 15px;
  display: none;
}

.admin-login input {
  margin-bottom: 10px;
}



.instagram-float-left {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: rgb(255, 255, 255); /* luxury look (can remove if logo is colored) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.instagram-float-left:hover {
  transform: scale(1.1);
}

.instagram-float-left img {
  width: 28px;
  height: 28px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .instagram-float-left {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .instagram-float-left img {
    width: 24px;
    height: 24px;
  }
}


  /* ================= WHATSAPP ================= */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px #25d36666;
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px #25d36699;
    background-color: #20ba5a;
  }
  .whatsapp-float:active {
    transform: scale(0.95);
  }
  .whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }
  @media (max-width: 1000px) {
    .whatsapp-float {
      width: 56px;
      height: 56px;
      bottom: 1.5rem;
      right: 1.5rem;
    }
    .whatsapp-float svg {
      width: 28px;
      height: 28px;
    }
  }
  @media (max-width: 600px) {
    .whatsapp-float {
      width: 52px;
      height: 52px;
      bottom: 1rem;
      right: 1rem;
    }
    .whatsapp-float svg {
      width: 26px;
      height: 26px;
    }
  }
  
  /* ================= RESPONSIVE ================= */
  @media (min-width: 768px) {
    .hero h1 {
      font-size: 72px;
    }
  }
  

  /* Floating animation */
  @keyframes floatUp {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
  }
  body {
    font-family: Arial, sans-serif;
    background: #f6f6f6;
  }
  
  .container {
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.9;
  }
  
  .message {
    font-size: 14px;
  }
  
  .points {
    font-size: 18px;
    font-weight: bold;
  }
  
  .info {
    font-size: 13px;
    color: #555;
  }
  
  .admin-title {
    font-size: 14px;
    color: #777;
  }
  
  .admin-panel {
    display: none;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
