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

:root {
  /* Color Palette */
  --color-yellow: #FFD600; /* Energetic Yellow */
  --color-black: #111111; /* Deep Black */
  --color-blue: #0044FF; /* Electric Blue */
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-dark: #333333;
  
  /* Typography */
  --font-main: 'Outfit', sans-serif;
  
  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-gray-light);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 68, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 68, 255, 0.6);
}

.btn-secondary {
  background-color: var(--color-black);
  color: var(--color-yellow);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #000;
}

/* Header */
header {
  background-color: var(--color-black);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px; /* Adjust based on actual logo */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  color: var(--color-white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: var(--color-yellow);
}

/* Hero Section */
.hero {
  background-color: var(--color-yellow);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero-images {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 1;
}

.hero-images img {
  border-radius: var(--radius-md);
  box-shadow: -20px 20px 0 var(--color-blue);
  transform: rotate(-3deg);
  transition: transform var(--transition-smooth);
}

.hero-images img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Products Section */
.section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-title span {
  color: var(--color-blue);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img-wrapper {
  height: 250px;
  overflow: hidden;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-md);
  text-align: center;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  text-align: center;
}

footer p {
  color: var(--color-gray-light);
  font-size: 0.9rem;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--space-md); }
.mb-2 { margin-bottom: var(--space-md); }

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl) 0;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-images {
    position: relative;
    width: 90%;
    right: 0;
    top: 0;
    transform: none;
    margin-top: var(--space-lg);
  }
  
  .nav-links {
    display: none; /* simple mobile menu for now */
  }
}
