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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #111111; /* Black text */
  background: #ffffff; /* White background */
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #ffffff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .nav-links li a {
  font-family: 'Bebas Neue', cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
  color: #111111;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}



.navbar .logo {
  color: #000000;      /* Your rich red */
  font-family: 'Bebas Neue', cursive;  /* Or your chosen font */
  font-weight: 900;
  font-size: 2rem;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}




.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}


.navbar .nav-links li a:hover {
  color: #E03C3C; /* Red hover */
}

/* Flex container for nav items */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === Hero Carousel Section === */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  background: rgba(255, 255, 255, 0.1); /* Slight white overlay to soften background */
  backdrop-filter: blur(2px); /* Blur */
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots button.active {
  background-color: #E03C3C;
}


.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  /* No text-shadow to keep it crisp */
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 14px 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  user-select: none;
}

.primary-btn {
  background-color: #E03C3C; /* Primary red */
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(224, 60, 60, 0.3);
}

.primary-btn:hover {
  background-color: #B23131; /* Darker red */
  box-shadow: 0 6px 14px rgba(178, 49, 49, 0.5);
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #E03C3C;
  color: #E03C3C; /* Use red text on white */
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.secondary-btn:hover {
  background-color: #E03C3C;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(224, 60, 60, 0.5);
}



/* Responsive */
@media (max-width: 768px) {

  .navbar .nav-links {
    display: none; /* Hide on mobile, can add hamburger later */
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Typewriter effect */

.typewriter-text {
  border-right: 2px solid #E03C3C;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}


.site-footer {
  background-color: #0f0f0f;
  color: white;
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 0.5rem;
}

.footer-nav h3,
.footer-newsletter h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ddd;
}

.footer-nav a {
  text-decoration: none;
  color: inherit;
}

.footer-newsletter p {
  color: #aaa;
  margin-bottom: 1rem;
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter input[type="email"] {
  flex: 1 1 auto;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: white;
}

.footer-newsletter button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: #ff0000;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #e03c3c;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter form {
    flex-direction: column;
    width: 100%;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
  }
}

/* Hamburger button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }
}
