html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fbfcee;
}

/* Navigation Styles */
.nav-container {
  background-color: #000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-item:hover {
  background-color: #c92127;
  transform: translateY(-2px);
}

.nav-item.active {
  background-color: #c92127;
}

/* Shop Tab Urgency Animation */
.nav-item.shop-tab {
  animation: shopFlash 3s infinite;
}

.nav-item.shop-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), transparent);
  animation: shopShine 2s infinite;
}

@keyframes shopFlash {
  0%, 100% { 
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
  }
  50% { 
    background: rgba(220, 38, 38, 0.2);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  }
}

@keyframes shopShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

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

header {
  background-color: #000;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

h1, h2, p {
  text-align: center;
}
h1 { font-size: 2.5rem; margin-top: 10px; }
h2 { font-size: 2rem; margin-top: 40px; color: #000; }

.centered-tags {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  line-height: 2;
}

.booking-alert {
  background-color: #c92127;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 16px 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto;
  cursor: pointer;
}

.responsive-iframe {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

.responsive-iframe video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: #000;
}

ul {
  list-style-position: inside;
  padding: 0;
  margin: 20px auto;
  display: table;
  text-align: left;
}

li {
  font-size: 1.1rem;
  line-height: 2;
}

.scroll-frame {
  max-height: 600px;
  overflow-y: auto;
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
}

.scroll-frame iframe {
  width: 100%;
  height: 1000px;
  border: none;
}

.testimonial-section {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid #c92127;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-size: 1rem;
  text-align: left;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

footer {
  background: #f5f5f5;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
  color: #444;
}

/* Content sections */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

/* Shop Styles */
.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.shop-header {
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #8b5cf6 100%);
  padding: 60px 40px;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.shop-header h1 {
  font-size: 3.5rem;
  margin: 0 0 20px 0;
  background: linear-gradient(45deg, #fff, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  position: relative;
  z-index: 1;
}

.presale-badge {
  display: inline-block;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  position: relative;
  z-index: 1;
}

.drop-date {
  font-size: 1.3rem;
  color: #fbbf24;
  margin: 0;
  position: relative;
  z-index: 1;
}

.countdown-section {
  background: #000;
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 60px;
  border: 2px solid #fbbf24;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.countdown-display {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.countdown-display span {
  color: #fbbf24;
  font-size: 3.5rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #fbbf24;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 8px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.product-images {
  text-align: center;
}

.main-image {
  margin-bottom: 30px;
}

.hat-image-container {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 3px solid #fbbf24;
  background: #000;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hat-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.hat-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hat-image-container:hover img {
  transform: scale(1.05);
}

/* Ensure the main image container has proper dimensions */
.main-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.hat-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  font-family: 'Times New Roman', serif;
  letter-spacing: 2px;
}

.hat-crown {
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 30px;
}

.hat-text-small {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  font-family: 'Times New Roman', serif;
}

.thumbnail-images {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
}

.thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.8;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #fbbf24;
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  pointer-events: none; /* Prevent image from interfering with click */
}

/* Ensure thumbnails are clickable on mobile */
.thumbnail {
  -webkit-tap-highlight-color: rgba(251, 191, 36, 0.3);
  touch-action: manipulation;
  user-select: none;
}

.product-details h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
}

.product-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: left;
}

.features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.pickup-option {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 4px solid #fbbf24;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 15px;
  transform: scale(1.3);
}

.pickup-info {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

.text-now-notice {
  background: #dc2626;
  border: 3px solid #991b1b;
  border-radius: 20px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.text-now-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  opacity: 0.9;
}

.text-now-notice:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
}

.text-now-notice p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Text Now Popup */
.text-now-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border: 4px solid #dc2626;
  position: relative;
  animation: slideIn 0.4s ease;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.popup-header h3 {
  color: #dc2626;
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.close-btn {
  background: #dc2626;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #991b1b;
  transform: scale(1.1);
}

.popup-body {
  margin-bottom: 30px;
}

.popup-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 15px 0;
  font-family: monospace;
}

.popup-instruction {
  font-size: 1.3rem;
  color: #6b7280;
  margin: 0 0 30px 0;
  font-weight: 600;
}

.popup-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.copy-btn, .text-btn {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.copy-btn:hover, .text-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4);
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
  }
  to { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}



.event-info {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.event-details {
  flex: 1;
  text-align: left;
}

.event-details h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.event-details p {
  font-size: 1.1rem;
  margin: 10px 0;
  text-align: left;
}

.event-details strong {
  color: #000;
}

.event-image {
  flex: 1;
  text-align: center;
}

.event-poster {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 3px solid #000;
}

/* Home Booking Section */
.home-booking-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
  margin: 60px 0;
  border-top: 3px solid #fbbf24;
  border-bottom: 3px solid #fbbf24;
}

.home-booking-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-booking-section h2 {
  color: #1f2937;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.home-booking-section .booking-subtitle {
  color: #6b7280;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.home-booking-section .booking-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 2px solid #fbbf24;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: #1f2937;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  background: white;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  margin-top: 30px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #000;
  border: none;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Booking Success Notification */
.booking-success {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border: 3px solid #10b981;
}

.success-content h3 {
  color: #10b981;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.success-content p {
  color: #374151;
  margin-bottom: 25px;
  line-height: 1.6;
}

.success-content button {
  background: #10b981;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-content button:hover {
  background: #059669;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shop-header h1 {
    font-size: 2.5rem;
  }
  
  .countdown-display {
    font-size: 2rem;
  }
  
  .countdown-display span {
    font-size: 2.5rem;
  }
  
  .thumbnail-images {
    gap: 15px;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .event-info {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .event-details {
    text-align: center;
  }
  
  .event-details h3 {
    text-align: center;
  }
  
  .event-details p {
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .booking-form {
    padding: 30px 20px;
  }
  
  .booking-section h2 {
    font-size: 2.5rem;
  }
  
  .home-booking-section .booking-form {
    padding: 25px 20px;
  }
  
  .home-booking-section h2 {
    font-size: 2rem;
  }
}

/* Sale Notification */
.sale-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #000;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.3rem;
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
  z-index: 10000;
  animation: slideInRight 2s ease;
  transform: translateX(100%);
  border: 3px solid #000;
  min-width: 300px;
  text-align: center;
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
  }
}
