/*
   SP FOODWORKS - Coming Soon Landing Page Stylesheet
   Theme: Luxury Culinary & Food Innovation
   Target Launch: 22 September 2026
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-orange: #FF6B00;
  --primary-amber: #FFB703;
  --accent-gold: #FFD166;
  --accent-red: #E63946;
  --accent-green: #10B981;
  --bg-dark: #0A0B0E;
  --glass-bg: rgba(20, 22, 30, 0.55);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-glow: rgba(255, 107, 0, 0.25);
  --text-main: #FFFFFF;
  --text-sub: #D1D5DB;
  --font-main: 'Outfit', 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body, html {
  height: 100%;
  width: 100%;
}

/*---------------------------------------
   TYPOGRAPHY & UTILITIES
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  margin: 0;
}

a {
  color: var(--primary-amber);
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-orange);
}

/*---------------------------------------
   OVERLAY & BACKGROUND
-----------------------------------------*/

.overlay {
  background: radial-gradient(circle at 50% 40%, rgba(15, 17, 24, 0.65) 0%, rgba(8, 9, 13, 0.95) 100%);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.grid-line {
  height: 300vh;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}

/*---------------------------------------
   PRELOADER
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #090A0D;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 107, 0, 0.2);
  border-top-color: var(--primary-orange);
  border-radius: 50%;
  animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/*---------------------------------------
   HEADER & LOGO BRANDING
-----------------------------------------*/

.brand-header {
  position: fixed;
  top: 30px;
  left: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 24px var(--glass-glow);
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--primary-amber);
  text-transform: uppercase;
  margin-top: -2px;
}

/*---------------------------------------
   LAUNCH BADGE
-----------------------------------------*/

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.launch-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/*---------------------------------------
   NAVIGATION MENU
-----------------------------------------*/

.menu-burger {
  position: fixed;
  z-index: 9999;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  text-align: center;
  border-radius: 50%;
  right: 35px;
  top: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.menu-burger:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.menu-bg {
  position: fixed;
  z-index: 222;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  right: 35px;
  top: 30px;
  background: #0F1016;
  pointer-events: none;
  transition: transform 0.5s ease;
  transform: translate3d(0, 0, 0);
}

.menu-bg.fs {
  transform: scale(100);
}

.menu-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-items.fs {
  opacity: 1;
  pointer-events: auto;
}

.menu-items h1 {
  font-size: 28px;
  color: var(--primary-amber);
  margin-bottom: 20px;
  font-weight: 700;
}

.menu-items ul.menu {
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
}

.menu-items ul.menu li {
  margin: 14px 0;
  text-align: center;
}

.menu-items ul.menu li a {
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.menu-items ul.menu li a:hover {
  color: var(--primary-amber);
}

/*---------------------------------------
   HOME HERO SECTION
-----------------------------------------*/

#home {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px 20px;
}

.home-info {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.home-info h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-info p.subtitle {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 35px auto;
  font-weight: 300;
}

/*---------------------------------------
   COUNTDOWN TIMER CARDS
-----------------------------------------*/

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 45px 0;
  padding: 0;
  list-style: none;
}

.countdown li {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  width: 125px;
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.countdown li:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.countdown span {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

.countdown h3 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-sub);
  margin-top: 10px;
}

/*---------------------------------------
   SUBSCRIBE FORM
-----------------------------------------*/

.subscribe-form-container {
  max-width: 520px;
  margin: 0 auto 50px auto;
  position: relative;
}

.subscribe-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: border-color 0.3s;
}

.subscribe-form:focus-within {
  border-color: var(--primary-orange);
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
}

.subscribe-form .form-control {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  width: 100%;
  outline: none;
  font-family: var(--font-main);
}

.subscribe-form .form-control::placeholder {
  color: #9CA3AF;
}

.subscribe-form button[type="submit"] {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-amber));
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
  white-space: nowrap;
}

.subscribe-form button[type="submit"]:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.alert-success-toast {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-green);
  color: #6EE7B7;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

/*---------------------------------------
   FEATURE HIGHLIGHTS CARDS
-----------------------------------------*/

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 20px auto 40px auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 28px;
  color: var(--primary-amber);
  margin-bottom: 12px;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.4;
  margin: 0;
}

/*---------------------------------------
   FOOTER & SOCIAL
-----------------------------------------*/

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 25px;
  text-align: center;
}

/*---------------------------------------
   RESPONSIVE DESIGN
-----------------------------------------*/

@media screen and (max-width: 991px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .brand-header {
    top: 20px;
    left: 20px;
  }

  .menu-burger {
    right: 20px;
    top: 20px;
  }

  .home-info h1 {
    font-size: 36px;
  }

  .home-info p.subtitle {
    font-size: 15px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown li {
    width: 75px;
    height: 85px;
    border-radius: 14px;
  }

  .countdown span {
    font-size: 28px;
  }

  .countdown h3 {
    font-size: 9px;
    margin-top: 4px;
  }

  .feature-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .subscribe-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 10px;
  }

  .subscribe-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}
