:root {
  --color-canvas: #5c5dfd; /* The Indigo Purple from the image */
  --color-accent-primary: #ffffff; /* White */
  --color-accent-secondary: #ccff00; /* Neon Lime */
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  
  --font-hand: 'Bowlby One SC', cursive;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-canvas);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Overrides */
h1, h2, h3 {
  text-transform: uppercase;
}

.handwritten-title {
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 10vw, 4.5rem);
  color: var(--color-accent-primary);
  line-height: 1.1;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .handwritten-title {
    font-size: 32px;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

.handwritten-subtitle {
  font-family: var(--font-hand);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--color-accent-primary);
  margin-bottom: 2rem;
}

.large-body {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.mono-text {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: var(--color-accent-secondary);
}

/* Layout simplification */
section {
  padding: 8rem 0;
}

.header {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.logo {
  font-family: var(--font-hand);
  font-size: 2.5rem;
  color: var(--color-accent-primary);
}

.hero {
  flex-direction: column;
}

.hero-video-container {
  width: 100%;
  max-width: 800px;
  margin: 4rem auto;
  position: relative;
  /* Add a subtle aesthetic border */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-accent-secondary);
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* Gallery simplification */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
}

.service-card h3 {
  color: var(--color-accent-secondary);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

/* Cartel simplification */
.cartel {
  border: none;
  background: none;
  padding: 0;
  transform: none;
  box-shadow: none;
}

.cartel::before { display: none; }

.cartel-main p {
  font-family: var(--font-hand);
  font-size: 2.25rem;
  color: var(--color-accent-secondary);
  line-height: 1.2;
}

/* WhatsApp */
.whatsapp-btn {
  background-color: var(--color-accent-secondary);
  color: #000;
  border-radius: 0;
}

/* Scroll reveal overrides */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

