/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  /* Colors from index.css */
  --background: 240, 5%, 7%; /* #111112 */
  --foreground: 0, 0%, 95%; /* #f2f2f2 */
  
  --card: 240, 4%, 12%;
  --card-foreground: 0, 0%, 95%;
  
  --primary: 0, 72%, 51%; /* #de2424 */
  --primary-foreground: 0, 0%, 100%;
  
  --secondary: 0, 50%, 15%;
  --secondary-foreground: 0, 0%, 90%;
  
  --muted: 0, 20%, 12%;
  --muted-foreground: 0, 0%, 60%;
  
  --accent: 0, 72%, 51%;
  --accent-foreground: 0, 0%, 100%;
  
  --destructive: 0, 84.2%, 60.2%;
  --destructive-foreground: 0, 0%, 98%;
  
  --border: 0, 50%, 20%;
  --input: 0, 50%, 20%;
  --ring: 0, 72%, 51%;
  
  --radius: 0.5rem;
  
  /* Helper Colors as Hex for convenience where HSL not strictly needed */
  --color-gold-start: #ff4d4d;
  --color-gold-mid: #b30000;
  --color-gold-end: #cc0000;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility / Common Classes */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.font-bold { font-weight: 700; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.text-primary { color: hsl(var(--primary)); }
.text-white { color: #fff; }
.bg-primary { background-color: hsl(var(--primary)); }

/* Custom Utilities from index.css */
.text-gold-gradient {
  background: linear-gradient(to right, #ff4d4d, #b30000, #ff0000, #990000, #cc0000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gold-subtle {
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.5rem 1rem; /* default size */
}

.btn-lg {
  height: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}
.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: white;
  background: transparent;
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.05);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background-color: hsla(var(--background), 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 4rem;
  display: flex;
  align-items: center;
}
.nav-links {
  display: none;
}
@media(min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}
.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-link:hover {
  color: hsl(var(--primary));
}
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
@media(min-width: 768px) {
  .mobile-toggle { display: none; }
}
.mobile-menu {
  display: none; /* JS will toggle */
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  background-color: hsl(var(--background));
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open {
  display: flex;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-1rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsla(var(--background), 0.8), transparent);
}
.hero-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(var(--background)), hsla(var(--background), 0.5), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media(min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}
.badge-launch {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(222, 36, 36, 0.3);
  border-radius: 9999px;
  background: rgba(222, 36, 36, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.text-hero {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media(min-width: 768px) {
  .text-hero { font-size: 4.5rem; }
}
.text-hero p {
  font-size: 1.125rem;
  color: #d1d5db; /* gray-300 */
  margin-bottom: 2rem;
  max-width: 28rem;
}
.hero-image-wrapper {
  display: none;
}
@media(min-width: 768px) {
  .hero-image-wrapper {
    display: block;
    position: relative;
  }
}
.hero-image-wrapper img {
  border-radius: 0.5rem;
  filter: drop-shadow(0 0 30px rgba(255,0,0,0.3));
  transition: transform 0.7s;
}
.hero-image-wrapper img:hover {
  transform: scale(1.05);
}

/* Features */
.section { padding-top: 6rem; padding-bottom: 6rem; }
.feature-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  border-radius: 0.75rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(222, 36, 36, 0.3);
}
.feature-icon {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(222, 36, 36, 0.1);
  border-radius: 9999px;
  display: inline-block;
  color: hsl(var(--primary));
}
.grid-features {
  display: grid;
  gap: 2rem;
}
@media(min-width: 768px) { .grid-features { grid-template-columns: 1fr 1fr; } }
@media(min-width: 1024px) { .grid-features { grid-template-columns: repeat(4, 1fr); } }

/* Scent Profile */
.bg-zinc-900-30 {
  background-color: rgba(24, 24, 27, 0.3);
}
.scent-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media(min-width: 768px) { .scent-grid { grid-template-columns: 1fr 1fr; } }
.scent-img-wrapper {
  position: relative;
}
.scent-note {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(222, 36, 36, 0.3);
  margin-bottom: 2rem;
}
.scent-dot {
  position: absolute;
  left: -9px;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  border: 4px solid hsl(var(--background));
}

/* Testimonials */
.grid-testimonials {
  display: grid;
  gap: 1.5rem;
}
@media(min-width: 768px) { .grid-testimonials { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.review-content { padding: 2rem; }
.rating-stars { display: flex; gap: 0.25rem; color: hsl(var(--primary)); margin-bottom: 1rem; }

/* CTA Section */
.cta-offer-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: hsl(var(--card));
  border: 2px solid hsl(var(--primary));
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(255,0,0,0.2);
}
@media(min-width: 768px) { .cta-offer-card { padding: 3rem; } }
.cta-badge {
  position: absolute;
  top: 0; right: 0;
  background: hsl(var(--primary));
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 0.75rem;
  text-transform: uppercase;
}
.price-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.price-tag {
  font-size: 3.75rem;
  font-weight: 900;
  color: hsl(var(--primary));
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-shadow: 0 0 15px rgba(255,0,0,0.5);
}
@media(min-width: 768px) { .price-tag { font-size: 4.5rem; } }

/* Footer */
footer {
  background: black;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Animations (Simple versions of framer motion) */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
