/* ================================
   ROOT VARIABLES (DESIGN SYSTEM)
   These control the entire theme.
   Change here → site updates everywhere
================================ */
:root {
  --bg: #0e0e11;        /* Main background (dark luxury) */
  --card: #16161c;      /* Card background */
  --accent: #c6a15b;    /* Gold accent (luxury feel) */
  --text: #f5f5f7;      /* Primary text */
  --muted: #b3b3bd;     /* Secondary text */
}

/* ================================
   RESET & GLOBAL RULES
   Removes browser inconsistencies
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   HEADER / NAVIGATION
================================ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;

  /* Sticky navbar */
  position: sticky;
  top: 0;

  /* Glassmorphism effect */
  background: rgba(14,14,17,0.9);
  backdrop-filter: blur(10px);

  z-index: 10;
}

.logo {
  font-weight: 800;
  letter-spacing: 1px;
}

.nav a {
  margin-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);

  /* Smooth color change on hover */
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* ================================
   HERO SECTION
   First impression zone
================================ */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 5%;
  align-items: center;
}

.hero-text {
  /* Entrance animation */
  animation: fadeUp 1s ease forwards;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  margin: 1rem 0 2rem;
}

/* Call-to-action button */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;

  /* Micro-interaction */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198,161,91,0.4);
}

/* Hero image container */
.hero-image {
  animation: fadeIn 1.5s ease forwards;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;

  /* Smooth zoom on hover */
  transition: transform 0.6s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ================================
   PRODUCTS SECTION
================================ */
.products {
  padding: 5%;
}

.products h2 {
  font-size: 2rem;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Grid layout that adapts automatically */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ================================
   PRODUCT CARD
   Animated on scroll + hover
================================ */
.product-card {
  background: var(--card);
  border-radius: 14px;
  padding: 1rem;

  /* Hidden by default (for scroll animation) */
  opacity: 0;
  transform: translateY(40px);

  /* Smooth transitions */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}

/* Revealed when JS adds .show */
.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Product image */
.product-card img {
  width: 100%;
  border-radius: 10px;

  /* Image zoom effect */
  transition: transform 0.5s ease;
}

/* Zoom image on hover */
.product-card:hover img {
  transform: scale(1.08);
}

/* Card hover elevation */
.product-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.product-card h3 {
  margin: 0.8rem 0 0.3rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ================================
   ABOUT SECTION
================================ */
.about {
  padding: 5%;
}

/* ================================
   FOOTER / CONTACT
================================ */
.footer {
  padding: 3rem 5%;
  border-top: 1px solid #222;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.whatsapp {
  color: var(--accent);
  font-weight: 600;
}

/* ================================
   ANIMATIONS (KEYFRAMES)
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================
   MOBILE RESPONSIVENESS
================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hide nav for clean mobile (can add hamburger later) */
  .nav {
    display: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================================
   ABOUT SECTION – IMAGE + CONTENT
================================ */
.about {
  padding: 5%;
}

/* Wrapper for text + image */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Text side */
.about-text h2 {
  font-size: 2rem;
}

.about-intro {
  max-width: 600px;
  color: var(--muted);
  margin: 1rem 0 2.5rem;
}

/* Value grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Value cards */
.about-card {
  background: var(--card);
  border-radius: 14px;
  padding: 1.5rem;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.about-card h3 {
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Image side */
.about-image img {
  width: 100%;
  border-radius: 18px;

  /* Luxury motion */
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.04);
}

/* ================================
   ABOUT ANIMATION ON LOAD
================================ */
.about-text {
  animation: fadeUp 1s ease forwards;
}

.about-image {
  animation: fadeIn 1.5s ease forwards;
}

/* ================================
   MOBILE VIEW
================================ */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1; /* image moves to top on mobile */
  }
}
