/* ================= B L A C K ================= */

:root {
  --bg: #0b0b0c;
  --surface: #121214;
  --surface-soft: #1a1a1d;

  --text-main: #f4f4f5;
  --text-subtle: #9ca3af;

  --accent: #ff4d30;
  --accent-soft: #ff6a4a;
  --accent-hover: #e63e24;

  --accent-secondary: #4f46e5;
  --accent-secondary-soft: #6366f1;
  --accent-secondary-hover: #4338ca;

  --border: rgba(255,255,255,0.08);
}

/* ================= GLOBAL RESET ================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================= BODY ================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-main);

  display: flex;
  flex-direction: column;
  min-height: 100vh;
  

  padding-top: 80px;

  transition: background 0.3s ease, color 0.3s ease;
  cursor: none;

}

body::before {
  content: "";
  position: fixed;
  top: -250px;
  left: -250px;
  width: 800px;
  height: 800px;

  background: radial-gradient(
    circle,
    rgba(79,70,229,0.12),
    rgba(255,77,48,0.05),
    transparent 70%
  );

  filter: blur(40px);
  z-index: -1;
}

/* ================= Cursor ! ================= */

.custom-cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff6a3d;

  pointer-events: none;
  z-index: 9999;

  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;

  box-shadow: 0 0 15px rgba(255, 106, 61, 0.6);
  pointer-events: none;

}

button:hover ~ .custom-cursor {
  transform: scale(1.8);
}

html, body, * {
  cursor: none !important;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(16px);
  background: rgba(15, 15, 15, 0.7);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-main);
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--text-subtle);
  font-size: 0.95rem;
  transition: 0.2s;
}

.nav a:hover {
  color: var(--text-main);
}


/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= DROPDOWN ================= */

.services-dropdown {
  position: relative;
}

.services-btn {
  background: none;
  border: none;
  color: var(--text-subtle);
  font-size: 0.95rem;
  cursor: pointer;
}

.services-btn:hover {
  color: var(--text-main);
}

.caret {
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.services-btn.active .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 180px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.2s ease;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--surface-soft);
  color: var(--text-main);
}

/* ================= BUTTONS ================= */

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255,77,48,0.2);
}

.secondary {
  border: 2px solid var(--accent-secondary);
  color: var(--accent-secondary);
  background: transparent;
}

.secondary:hover {
  background: var(--accent-secondary);
  color: white;
  box-shadow: 0 0 12px rgba(79,70,229,0.35);
  transform: translateY(-2px) scale(1.02);
}

.order-btn {
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.order-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ================= MAIN LAYOUT ================= */

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 0; 
}

/* HERO SPLIT */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 120px;

  width: 100%;
  max-width: 1300px;

  padding-left: 80px;  /* 👈 PUSH RIGHT */
  padding-right: 40px;
}

/* LEFT */

.hero-left {
  flex: 1.2;
  max-width: 520px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.hero-left::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,77,48,0.12), transparent 70%);
  z-index: -1;
  transform: translate(-100px, -100px);
}

.hero-left h1,
.hero-left .slogan {
  text-align: center;
}

/* RIGHT */

.hero-right {
  flex: 0.8; 
  display: flex;
  justify-content: center;
}

.hero-right::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;

  background: linear-gradient(
    to left,
    rgba(79,70,229,0.06),
    transparent
  );

  z-index: -1;
}

/* DIVIDER */

.divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
  
  margin: 0 20px; /* 👈 adds breathing space */

}

/* DELIVERY BANNER :P */

.brand-banner {
  position: relative;
  width: 100%;
  text-align: center;

  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.25em;

  margin-top: -15px;
  padding: 18px 0;
  margin-bottom: -10px;

  /* GLASS EFFECT */
  background: linear-gradient(
    90deg,
    rgba(255, 100, 50, 0.03),
    rgba(255, 255, 255, 0.02),
    rgba(0, 100, 255, 0.03)
  );

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  /* TEXT STYLE */
  background-image: linear-gradient(90deg, #ff6a3d, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.53;

  user-select: none;
  pointer-events: none;

  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 0.08;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .brand-banner {
    font-size: 36px;
    letter-spacing: 0.2em;
  }
}

.brand-banner::before,
.brand-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* LEFT FADE */
.brand-banner::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0f, transparent);
}

/* RIGHT FADE */
.brand-banner::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0f, transparent);
}

/* TEXT */

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--accent);
  margin-bottom: 5px;
  opacity: 0.80
}

.slogan {
  font-size: 1.15rem;
  color: var(--text-subtle);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 25px 0 15px 0;
}

.subtext {
  font-size: 0.9rem;
  color: var(--text-subtle);
  font-style: italic;
  text-align: center;
}

/* ================= PROMO ================= */

.promo {
  background: rgba(18,18,20,0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  max-width: 340px;

  transform: translateY(20px);
  backdrop-filter: blur(10px);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

@keyframes glowPulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.promo:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.6),
    0 0 25px rgba(255,77,48,0.08);
}

.promo::before {
  content: "";
  position: absolute;

  animation: glowPulse 4s ease-in-out infinite;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 180%;
  height: 180%;

  background: radial-gradient(
    circle,
    rgba(255,77,48,0.08),
    rgba(255,77,48,0.08),
    transparent 70%
  );

  z-index: -1;
  pointer-events: none;
  filter: blur(40px); /* 👈 softness */
}

.promo-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 1px;
  font-weight: 600;

  color: var(--accent-soft);
  background: rgba(255,77,48,0.08);

  padding: 6px 10px;
  border-radius: 999px;

  margin-bottom: 12px;

  border: 1px solid rgba(255,77,48,0.15);
  box-shadow: 0 0 10px rgba(255,77,48,0.15);
}

.promo h2 {
  font-size: 2.5rem;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

@media (min-width: 1024px) {

  .promo h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;

    text-shadow: 0 0 20px rgba(255,77,48,0.25); /* subtle glow */
  }

}

.promo h2 span {
  font-size: 4.5rem;
  color: var(--accent);
}

.promo p {
  color: var(--text-subtle);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.promo-btn {
  background: var(--accent-soft);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.promo-btn:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255,77,48,0.2);
}

/* ================= FOOTER ================= */

.footer {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.85rem;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    gap: 30px;
  }

  .hero-left {
    text-align: center;
  }

  .divider {
    display: none;
  }

  .hero-right {
    width: 100%;
  }

  .promo {
    width: 100%;
    max-width: none;
    padding: 20px;

    /* 🔥 OPTIONAL BANNER STYLE */
    background: rgba(255,77,48,0.1);
    border: 1px solid rgba(255,77,48,0.2);
  }

  .promo h2 {
    font-size: 1.8rem;
  }

}

* {
  transition: 
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* ================= Logo :D ================= */

.logo img {
  height: 36px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-logo img {
  height: 240px; 
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.03);
}

/* ================= Enough Header Talk . . . ================= */

.info-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.info-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-subtext {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);

  padding: 20px;
  border-radius: 16px;

  width: 260px;

  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 61, 0.3);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.stores p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* ================= Stores ================= */

.store-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-list span {
  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.store.special {
  background: rgba(255, 106, 61, 0.08);
  border: 1px solid rgba(255, 106, 61, 0.25);

  box-shadow:
    0 0 10px rgba(255, 106, 61, 0.15),
    0 0 20px rgba(255, 106, 61, 0.08);

  color: #ff8c42;

  transition: all 0.2s ease;
}

/* ================= Availability link ================= */

.availability-link {
  margin-top: 30px;
  text-align: center;
}

.availability-link a {
  font-size: 15px;
  color: var(--accent-secondary-soft);

  text-decoration: none;
  position: relative;

  transition: all 0.2s ease;
}

/* underline effect */
.availability-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0%;
  height: 1px;

  background: #ff6a3d;
  transition: width 0.25s ease;
}

.availability-link a:hover {
  color: var(--accent-secondary-hover);
  text-shadow: 0 0 10px rgba(255, 106, 61, 0.4);
}

.availability-link a:hover::after {
  width: 100%;
}