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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Offset for fixed navbar */
}

body {
  /*background: #ffffff;*/
  color: #000000;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

.navbar .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #f04e30;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar .nav-links li a {
  /*color: black;*/
  text-decoration: none;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #f04e30;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #000000;
  cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    /*background: #000;*/
    flex-direction: column;
    width: 200px;
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px; /* To avoid overlap */
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: -1;
}

.overlay {
  z-index: 2;
}

.overlay h1 {
  font-size: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  color: #f04e30;
}

.overlay p {
  font-size: 1.5rem;
  color: #d8d8d8;
}

/* Sections */
section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #f04e30;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 1rem auto;
}

input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* Buttons */
button, .floating-btn {
  background: #f04e30;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

button:hover, .floating-btn:hover {
  background: #c03e25;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

/* Map */
.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(240, 78, 48, 0.4);
}

.shadow-orange {
  box-shadow: 0 0 15px rgba(240, 78, 48, 0.4);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #111;
  color: #aaa;
}