/* index.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --primary: #c92f2f;
  --primary-hover: #e03a3a;
  --bg-dark: #070707;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-white: #ffffff;
  --text-muted: #b0b0b0;
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glassmorphism Utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: radial-gradient(circle at top right, rgba(201, 47, 47, 0.05) 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: -1;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(201, 47, 47, 0.4);
}

/* Stats Section */
.stats {
  padding: 2rem 0;
  margin-top: -3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  padding: 2.5rem 1rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(201, 47, 47, 0.1);
  background: rgba(255,255,255,0.07);
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(201, 47, 47, 0.3);
}

.stat-card p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* About/Repair Transparency */
.section {
  padding: 2.5rem 0;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about-features {
  list-style: none;
}

.about-features li {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  transition: var(--transition);
}

.about-features li:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(10px);
}

.about-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-features li strong {
  display: inline-block;
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.about-features li p {
  display: inline;
  color: var(--text-muted);
}

.age-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(201, 47, 47, 0.1);
  border: 2px solid var(--primary);
  border-radius: 20px;
  margin: 2rem 0;
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 10px 30px rgba(201, 47, 47, 0.2);
}

.age-highlight span {
  color: var(--primary);
}

/* Bento Gallery Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(201, 47, 47, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Bento Items sizing */
.bi-large { grid-column: span 2; grid-row: span 2; }
.bi-wide { grid-column: span 2; }
.bi-tall { grid-row: span 2; }

@media (max-width: 968px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .bi-large, .bi-wide, .bi-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 250px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  user-select: none;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -5rem; }
.lightbox-next { right: -5rem; }

@media (max-width: 1100px) {
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-close { top: 1rem; right: 1rem; z-index: 10; }
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  margin-top: 3rem;
}

.comparison {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}

.comparison th, .comparison td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.comparison .highlight {
  color: var(--primary);
  font-weight: 800;
}

/* Footer */
footer {
  padding: 6rem 0 4rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
}



/* Layout Grids */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-grid .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-grid img {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  display: block;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  order: 2; /* Images below text */
}

/* Responsive Overrides */
@media (max-width: 968px) {
  .grid { grid-template-columns: 1fr !important; gap: 3rem; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 4rem 0; }
  .hero { height: auto; min-height: auto; padding: 8rem 0 4rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .stats-grid { 
    grid-template-columns: 1fr !important;
    gap: 1.5rem; 
  }
  .stat-card { padding: 2rem 1.5rem; }
  .hero-bg { background-position: left center; }
  
  /* Feature list fixes */
  .about-features li {
    padding: 1.5rem;
  }
}


