@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@400;700&display=swap');

:root {
  --bg: #121212;
  --text: #ffffff;
  --primary: #e63946;
  --secondary: #1e1e1e;
  --font-main: 'Bebas Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat fixed;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 5%; background: rgba(18, 18, 18, 0.85); backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: transparent;
  color: #fff; padding: 0 20px;
}
.hero-content h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.btn {
  display: inline-block; padding: 12px 30px; background: var(--primary); color: #fff;
  font-weight: bold; border-radius: 5px; transition: transform 0.3s, opacity 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}
.btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* Sections */
.section { padding: 80px 5%; background: transparent; }
.bg-secondary { background: #121212; color: #fff; position: relative; z-index: 10; }
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
h2 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; color: var(--primary); text-shadow: 0 2px 5px rgba(0,0,0,0.3); }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: #1e1e1e; padding: 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.card h3 { color: var(--primary); margin-bottom: 15px; }

/* Form */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; font-family: inherit; background: #121212; color: var(--text);
}
.contact-form button { width: 100%; font-size: 1.1rem; }

/* Footer */
footer { text-align: center; padding: 30px 5%; background: var(--primary); color: #fff; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-content h1 { font-size: 2.5rem; }
}