:root {
  --arsenal-red: #EF0107;
  --arsenal-white: #FFFFFF;
  --arsenal-dark: #023474;
  --arsenal-gold: #9C824A;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #F8F9FA;

  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--arsenal-white);

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.98); */
  background: rgb(163 7 11);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo .logo img {
  max-width: 120px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--arsenal-white);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--arsenal-red);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--arsenal-red);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--arsenal-red) 0%, var(--arsenal-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('bg.jpg') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--arsenal-white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title .highlight {
  color: var(--arsenal-gold);
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  margin-top: 8px;
}

.hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: var(--arsenal-white);
  color: var(--arsenal-red);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: var(--arsenal-gold);
  color: var(--arsenal-white);
}

.section {
  padding: 96px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  background: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--arsenal-white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--arsenal-red), var(--arsenal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arsenal-white);
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
}

.gallery {
  background: var(--arsenal-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(239, 1, 7, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: var(--arsenal-white);
  font-weight: 600;
  font-size: 18px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.contact {
  background: var(--bg-light);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info {
  margin-bottom: 48px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-size: 16px;
}

.info-item svg {
  color: var(--arsenal-red);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--arsenal-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--arsenal-red);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: var(--arsenal-red);
  color: var(--arsenal-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(239, 1, 7, 0.3);
}

.footer {
  background: var(--text-dark);
  color: var(--arsenal-white);
  padding: 32px 24px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 24px;
    font-size: 14px;
  }

  .section {
    padding: 64px 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 16px;
    font-size: 12px;
  }

  .nav-logo .logo-text {
    font-size: 18px;
  }

  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    padding: 0 16px;
  }
}
