/* RESET & TYPOGRAPHY */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter', sans-serif; background:#F7F7F7; color:#0A1D37; line-height:1.6; }
h1,h2,h3 { font-family:'Clash Display', serif; }
a { text-decoration:none; }

/* NAV */
.navbar {
  position:fixed; top:0; width:100%; background:#0A1D37; color:white; padding:1rem 5%; display:flex; justify-content:space-between; align-items:center; z-index:1000;
}
.logo { font-size:1.8rem; font-weight:600; }
.logo span { color:#FF4D6D; }
.nav-links { display:flex; gap:2rem; }
.nav-links a { color:white; font-weight:600; transition:0.3s; }
.nav-links a:hover { color:#FF4D6D; }
.hamburger { display:none; font-size:1.5rem; cursor:pointer; }

/* HERO */
.hero {
  min-height:100vh; background:linear-gradient(135deg, #0A1D37 0%, #1e3a5f 100%); color:white; display:flex; align-items:center; justify-content:space-between; padding:0 5%; position:relative; overflow:hidden;
}
.hero-content { max-width:500px; z-index:2; }
.hero h1 { font-size:3.5rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; opacity:0.9; }
.cta-btn {
  background:#FF4D6D; color:white; padding:1rem 2rem; border-radius:50px; font-weight:600; display:inline-block; box-shadow:0 8px 20px rgba(255,77,109,0.3); transition:0.3s;
}
.cta-btn:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(255,77,109,0.4); }

/* VINYL ANIMATION */
.vinyl-animation { position:relative; width:400px; height:400px; }
.vinyl { width:100%; animation:spin 8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.eq-bars { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:4px; }
.eq-bars span { width:6px; background:#FF4D6D; animation:equalizer 1.5s infinite; border-radius:3px; }
.eq-bars span:nth-child(1) { height:20px; animation-delay:0s; }
.eq-bars span:nth-child(2) { height:40px; animation-delay:0.2s; }
.eq-bars span:nth-child(3) { height:30px; animation-delay:0.4s; }
.eq-bars span:nth-child(4) { height:50px; animation-delay:0.6s; }
@keyframes equalizer { 0%,100% { transform:scaleY(1); } 50% { transform:scaleY(0.3); } }

/* CARDS */
.services { padding:5rem 5%; text-align:center; background:white; }
.services h2 { font-size:2.5rem; margin-bottom:3rem; color:#0A1D37; }
.cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:2rem; }
.card {
  background:white; border-radius:15px; overflow:hidden; box-shadow:0 5px 15px rgba(0,0,0,0.05); transition:0.4s; cursor:pointer;
}
.card:hover { transform:translateY(-10px); box-shadow:0 20px 40px rgba(255,77,109,0.15); }
.card img { width:100%; height:200px; object-fit:cover; }
.card h3 { margin:1rem 0 0.5rem; color:#FF4D6D; }
.card p { padding:0 1.5rem 1.5rem; font-size:0.95rem; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display:none; position:fixed; top:70px; left:0; width:100%; background:#0A1D37; flex-direction:column; padding:1rem 0; }
  .nav-links.active { display:flex; }
  .hamburger { display:block; }
  .hero { flex-direction:column; text-align:center; padding-top:100px; }
  .hero h1 { font-size:2.5rem; }
  .vinyl-animation { margin-top:2rem; width:250px; height:250px; }
}