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

:root {
  --clr-bg: #0a0a0a;
  --clr-text: #f4f4f4;
  --clr-accent: #ccff00; /* Volt green/yellow */
  --clr-accent-dark: #bada00;
  --clr-secondary: #ff3366; /* Vibrant red/pink */
  --clr-card: #141414;
  --clr-border: #2a2a2a;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --cursor-size: 20px;
}

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  /* hide default cursor for custom cursor */
  cursor: none;
}

a, button {
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background-color: var(--clr-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease;
}

.cursor.hovered {
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 2px solid var(--clr-accent);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text);
  letter-spacing: 2px;
}

.btn-cta {
  background: var(--clr-accent);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-4px) skew(-2deg);
  background: var(--clr-accent-dark);
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--clr-accent);
  color: #000;
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-1.5deg) scale(1.05);
  margin-top: -2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* Typography & Utilities */
.text-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Sections */
section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  align-items: stretch;
}

.hero-content {
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--clr-text);
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--clr-accent);
  display: block;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 400px;
  color: #ccc;
  margin-bottom: var(--space-lg);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will be the generated image */
  transform: scale(1.1);
  transition: transform 10s ease;
}

.hero:hover .hero-image img {
  transform: scale(1);
}

/* Stats */
.stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

/* Services */
.services {
  background-color: var(--clr-card);
  overflow: hidden;
}

.services-header {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-title {
  font-size: clamp(3rem, 6vw, 5rem);
}

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

.service-card {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: all 0.4s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--clr-accent);
  transition: width 0.4s ease;
  z-index: 0;
}

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

.service-card:hover::before {
  width: 10px;
}

.service-card * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.service-card p {
  color: #aaa;
}

/* Asymmetric Section - About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-img {
  position: relative;
  padding-right: var(--space-md);
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 0 40px 0 40px;
  display: block;
  z-index: 2;
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  top: var(--space-sm);
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-secondary);
  border-radius: 0 40px 0 40px;
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.feature-tag {
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-text);
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background-color: var(--clr-text);
  color: var(--clr-bg);
}

/* Footer / Contact */
.footer-cta {
  background-color: var(--clr-accent);
  color: #000;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xl);
}

.footer-cta h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: var(--space-md);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.footer-col p, .footer-col a {
  color: #222;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Reviews */
.reviews-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.stars {
  color: #000;
  font-size: 1.5rem;
}

/* Responsiveness */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 50vh;
    order: -1;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .cursor {
    display: none;
  }
  body, a, button {
    cursor: auto;
  }
}
