/* ============================================
   LUKOUHUB - MAIN STYLESHEET WITH CIRCLE LOGO
   ============================================ */

/* ============ RESET & BASE ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fffaf5;
}

a {
  text-decoration: none;
  color: inherit;
}

#notification {
  position: fixed;    /* Keeps it in the same spot even if you scroll */
  top: 100px;         /* Place it below the navbar */
  right: 20px;        /* Align to the right side */
  z-index: 99999;     /* Force it to the very front layer */
  
  padding: 16px 32px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  
  display: none;      /* JavaScript will toggle this to 'block' */
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ============ NAVIGATION ============ */
.navbar {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 100%);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo with Circle Image + Text */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

/* Circle Logo Image */
.logo-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f4a460;
  box-shadow: 0 2px 10px rgba(244, 164, 96, 0.3);
  transition: all 0.3s ease;
}

.logo-circle:hover {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 4px 15px rgba(244, 164, 96, 0.5);
}

/* Logo Text */
.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.logo-highlight {
  color: #f4a460;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: white;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  border-bottom-color: #f4a460;
  color: #f4a460;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-btn {
  background: linear-gradient(135deg, #f4a460, #e08040);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: linear-gradient(135deg, #e08040, #c06030);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(244,164,96,0.4);
}

.cart-count {
  background: #e63946;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.admin-link {
  color: #f4a460;
  font-size: 14px;
  padding: 8px 15px;
  border: 1px solid #f4a460;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.admin-link:hover {
  background: #f4a460;
  color: #2c1810;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: linear-gradient(135deg, #f4a460, #e08040);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e08040, #c06030);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244,164,96,0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #2c1810;
  border-color: white;
}

/* ============ PAGE HEADER (Used on Cart & Listing pages) ============ */
.page-header {
  background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 100%);
  padding: 60px 5% 40px;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-header h1 span {
  color: #f4a460;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

/* ============ HERO SECTION - WITH VIDEO BACKGROUND ============ */
.hero {
  position: relative;
  min-height: 450px;
  height: 60vh;
  max-height: 650px;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Dark Orangey Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(44, 24, 16, 0.85) 0%,
    rgba(139, 69, 19, 0.75) 30%,
    rgba(244, 164, 96, 0.65) 60%,
    rgba(74, 44, 42, 0.80) 100%
  );
  z-index: 1;
  backdrop-filter: blur(1px);
}

/* Container and Content */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  background: linear-gradient(135deg, #f4a460, #ffb6c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-tagline {
  font-size: 20px;
  color: #f4a460;
  margin-bottom: 10px;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
  max-width: 450px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  text-align: center;
  max-width: 380px;
  position: relative;
}

.hero-card::before {
  content: '🍩';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 50px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(10deg); }
}

.hero-card-emoji {
  font-size: 90px;
  margin-bottom: 15px;
}

.hero-card h3 {
  color: #2c1810;
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-card p {
  color: #666;
  font-size: 14px;
}

.hero-badge {
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============ FEATURES SECTION ============ */
.features {
  padding: 60px 5%;
  background: white;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fffaf5;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Icon images - no background circles */
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Remove the gradient backgrounds */
.feature-card:nth-child(1) .feature-icon { }
.feature-card:nth-child(2) .feature-icon { }
.feature-card:nth-child(3) .feature-icon { }
.feature-card:nth-child(4) .feature-icon { }

.feature-card h3 {
  color: #2c1810;
  margin-bottom: 8px;
  font-size: 16px;
}

.feature-card p {
  color: #888;
  font-size: 13px;
}

/* ============ CATEGORIES / PACKAGES ============ */
.categories {
  padding: 80px 5%;
  background: linear-gradient(180deg, #fffaf5 0%, #fff5eb 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #2c1810;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #f4a460;
}

.section-header p {
  color: #888;
  font-size: 16px;
}

.categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: white;
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(244,164,96,0.2);
  border-color: #f4a460;
}

.category-emoji {
  font-size: 55px;
  margin-bottom: 15px;
}

.category-card h3 {
  color: #2c1810;
  margin-bottom: 8px;
  font-size: 18px;
}

.category-card p {
  color: #888;
  font-size: 13px;
  margin-bottom: 15px;
}

.category-price {
  background: linear-gradient(135deg, #f4a460, #e08040);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

/* ============ PRODUCTS SECTION ============ */
.products {
  padding: 80px 5%;
  background: white;
}

.products-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image-only grid for homepage */
.products-grid-images {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-image-card {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 350px;
}

.product-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Original products grid for listing page */
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-section .product-image {
  height: 250px;
}

/* Remove gradient backgrounds when image is present */
.product-card .product-image { 
  background: none;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e63946;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
}

.product-badge.new { 
  background: #3cb371; 
}

.product-badge.popular { 
  background: #ff69b4; 
}

.product-info {
  padding: 25px;
}

.product-category {
  color: #f4a460;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-info h3 {
  color: #2c1810;
  margin-bottom: 8px;
  font-size: 20px;
}

.product-info .description {
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #f4a460;
}

.add-cart {
  background: linear-gradient(135deg, #2c1810, #4a2c2a);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

.add-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(44,24,16,0.4);
}

.view-all {
  text-align: center;
  margin-top: 50px;
}

/* ============ ABOUT SECTION ============ */
.about {
  padding: 80px 5%;
  background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 100%);
  color: white;
}

/* ============ WHAT'S NEW BANNER ============ */
.whats-new-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h2 {
  font-size: 56px;
  color: white;
  font-weight: bold;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .whats-new-banner {
    height: 300px;
  }
  
  .banner-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .whats-new-banner {
    height: 250px;
  }
  
  .banner-content h2 {
    font-size: 28px;
  }
}

/* ============ ABOUT SECTION ============ */
.about {
  padding: 80px 5%;
  background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 100%);
  color: white;
}

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

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #f4a460;
}

.about-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 15px;
  font-size: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #f4a460;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  color: #2c1810;
}

.about-card-emoji {
  font-size: 60px;
  margin-bottom: 15px;
}

/* ============ LOCATIONS ============ */
.locations {
  padding: 60px 5%;
  background: #fffaf5;
}

.locations-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.location-card-emoji {
  font-size: 40px;
  margin-bottom: 15px;
}

.location-card h3 {
  color: #2c1810;
  margin-bottom: 10px;
  font-size: 18px;
}

.location-card p {
  color: #888;
  font-size: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: #1a0f0a;
  color: white;
  padding: 60px 5% 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: #f4a460;
  transform: translateY(-3px);
}

.footer-links h4 {
  color: #f4a460;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f4a460;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
  .hero {
    min-height: 450px;
    height: auto;
  }
  
  .hero-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  
  .hero-content p { 
    margin: 0 auto 30px; 
  }
  
  .hero-buttons { 
    justify-content: center; 
  }
  
  .hero-image { 
    margin-top: 40px; 
  }
  
  .features-container { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .categories-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .products-grid-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-image-card {
    height: 300px;
  }
  
  .about-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  
  .about-stats { 
    justify-content: center; 
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  /* Logo smaller on mobile */
  .logo-circle {
    width: 38px;
    height: 38px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  /* Cart button smaller on mobile */
  .cart-btn {
    padding: 8px 18px;
    font-size: 14px;
  }
  
  /* Hide emoji on mobile cart button */
  .cart-btn::before {
    content: '';
  }
  
  .cart-btn {
    font-size: 0;
  }
  
  .cart-count {
    font-size: 12px;
    margin-left: 0;
  }
  
  .cart-btn::after {
    content: 'Cart';
    font-size: 14px;
  }
  
  .hero {
    min-height: 400px;
    max-height: 600px;
  }
  
  .hero-content h1 { 
    font-size: 36px; 
  }
  
  .hero-video {
    min-width: 100%;
    min-height: 100%;
  }
  
  .section-header h2 { 
    font-size: 28px; 
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .locations-grid { 
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 350px;
    height: 450px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  /* Logo even smaller on small mobile */
  .logo-circle {
    width: 35px;
    height: 35px;
  }
  
  .logo-text {
    font-size: 22px;
  }
  
  .features-container { 
    grid-template-columns: 1fr; 
  }
  
  .categories-grid { 
    grid-template-columns: 1fr; 
  }
  
  .products-grid { 
    grid-template-columns: 1fr; 
  }
  
  .products-grid-images {
    grid-template-columns: 1fr;
  }
  
  .product-image-card {
    height: 280px;
  }
  
  .about-stats { 
    flex-direction: column; 
    gap: 20px; 
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Hide text cursor/caret */
* {
    caret-color: transparent;
}
