
html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

section{
  font-size:100%;
}

h1, h2, h3, .hero-title,
.hero-content h1, .about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
}

button, .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}



.logo img {
  text-align: center;
  width: 30%;
  padding: 0px;
  padding-top: 5px;
  margin: 0;
  margin-left: 30%;
}

.logo {
  text-align: left;
}



header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20%;
  padding-top: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding-right: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}



.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 110;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1400px) {
  .hamburger {
    display: flex;
    position: absolute;
  }

  .nav-links {
    position: absolute;
    z-index: 110;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 2;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    color: #fff;
  }
  .hero{
    z-index: 1;
  }
}



.animate-fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 30%;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info a {
  color: #ccc;
  text-decoration: none;
}

.contact-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.footer-bottom {
  text-align: center;
  color: #cecece;
  font-size: 13px;
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding: 25px 10px;
  }

  .footer-section {
    width: 100%;
    max-width: 300px;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .footer-section p,
  .footer-section li,
  .footer-section a {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .footer-logo {
    max-width: 150px;
    margin: 0 auto 10px auto;
  }

  .map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 10px;
    text-align: center;
  }
  .navbar{
    padding-top:10%;
  }
  .logo img{
    width:60%;
  }

}



.underline {
  width: 50px;
  height: 3px;
  background: #ff7a00;
  margin-bottom: 20px;
}

.section {
  padding: 60px 20px;
  background: #fff;
  color: #222;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
}

.mailsend{
  background-color: #d35400;
  color: #fff;
  padding: 15px;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Barlow Condensed', sans-serif;
}

.mailsend:hover {
  background-color: #b34700;
  border-radius: 5px;
  transition: all 0.3s ease;
}
