/* The retro overlay container */
.retro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* CRT scanlines effect */
.scanlines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  background-size: 100% 4px;
}

/* Vignette effect */
.vignette {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

/* Grain/noise effect */
.grain {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>');
}

/* Color tint */
.color-tint {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(200, 170, 120, 0.1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
}

/* Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: flex-start;
}

/* Hero Section */
.hero {
    display: flex;
    height: 100vh;
    background-color: #0a0a0a;
}

.hero-left {
    width: 50%;
    padding: 120px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

/* Brand Badge */
.brand-badge {
    display: inline-block;
    background-color: rgb(110 202 255 / 20%);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 40px;
    align-self: flex-start;
}

.brand-badge2 {
    display: inline-block;
    background-color: rgb(110 202 255 / 20%);
    padding: 8px 20px;
    margin-bottom: 40px;
    align-self: flex-start;
}

.brand-badge2 span {
    color: #aad8d3;
    font-size: 16px;
    font-weight: 600;
}

.brand-badge span {
    color: #aad8d3;
    font-size: 16px;
    font-weight: 600;
}

/* Headline */
.headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: #aad8d3;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.headline span {
    display: block;
    transform: skewY(-5deg);
    transform-origin: left;
}

/* Description */
.description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 60px;
    color: #aad8d3;
}

/* Scroll Indicator */

/* Responsive Styles */
@media (max-width: 1024px) {
    .headline {
        font-size: 48px;
    }
    
    .hero-left {
        padding: 100px 40px 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        width: 100%;
    }
    
    .hero-left {
        padding: 100px 30px 40px;
        height: 60vh;
    }
    
    .hero-right {
        height: 40vh;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero-left {
        padding: 80px 20px 30px;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .brand-badge {
        padding: 6px 15px;
        margin-bottom: 20px;
    }
    
    .brand-badge span {
        font-size: 14px;
    }
    
    .description {
        font-size: 12px;
        margin-bottom: 40px;
    }
}
