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

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0F0F0F;
  color: #FFFFFF;
}


.header {
  position: sticky;
  top: 0;
  background: #0F0F0F;
  border-bottom: 1px solid rgba(255,255,255,.1);
  z-index: 100;
}

.header-content {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: #C9A44C;
}
.logo img {
  height: 60px;      
  width: auto;
  display: block;
}

.desktop-nav {
  display: none;
  gap: 32px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  transition: color .3s;
}

.desktop-nav a:hover {
  color: #C9A44C;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}


.mobile-nav {
  display: none;
  background: #2A2A2A;
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #C9A44C;
}


.mobile-nav.open {
  display: flex;
}


.hero {
  min-height: 750px; 
  text-align: center;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
    linear-gradient(rgba(15,15,15,.7), rgba(15,15,15,.7)),
    url('https://images.unsplash.com/photo-1612073584622-335da5fadd8a?w=1080');
  background-size: cover;
  background-attachment: fixed;
  background-position-y: -650px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
}

.hero p {
  margin: 16px 0 32px;
  font-size: 20px;
}


.btn {
  background: #C9A44C;
  color: #0F0F0F;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .3s, background .3s;
}

.btn:hover {
  background: #B89340;
  transform: translateY(-3px);
}


section {
  scroll-margin-top: 80px;
}

.philosophy,
.contact {
  padding: 64px 24px;
}

input{
  width: auto;
}
textarea{
  width: auto;
}

.training {
  background: #2A2A2A;
  padding: 64px 24px;
}


.content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: #C9A44C;
}


img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}


.form-card {
  max-width: 600px;
  margin: auto;
  background: #2A2A2A;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

input, textarea {
  padding: 12px;
  background: #0F0F0F;
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  border-radius: 6px;
}


.footer {
  background: #2A2A2A;
  text-align: center;
  padding: 32px;
}

@media (min-width: 768px) {
  .menu-btn { display: none; }
  .desktop-nav { display: flex; }

  .hero h1 { font-size: 80px; }
  .hero{
    background-position-y: -450px;
  }

  .content {
    flex-direction: row;
    align-items: center;
  }

  img {
    height: 450px;
  }
  .training img{
    width: 700px;
  }
}
