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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* Safari */
  -ms-text-size-adjust: 100%;     /* IE */
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
   overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* or use object-fit with fixed height */
}


/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  background-color: #111;
  overflow-x: hidden;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  height: auto;
  max-height: 120px;
  width: auto;
  max-width:200px;
}
.logo-icon {
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #d4af37;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -75%;
  width: 75%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease-in-out;
  z-index: 99;
}
.mobile-nav ul {
  list-style: none;
  text-align: right;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.4s forwards;
  animation-delay: calc(var(--i) * 0.15s);
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
  margin: 20px 0;
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Background */
.hero {
  min-height: 100vh;
  background: url('images/galla/38b5663b-58ad-4497-b2d0-f6011f7545e4.jpg') center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.315);
  padding: 120px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}
.hero-content {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 100px;
  max-width: 800px;
  width: 100%;
}
.hero-content h1,
.hero-content p {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.hero-content.visible h1,
.hero-content.visible p {
  opacity: 1;
  transform: translateY(0);
}





.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 5;
  pointer-events: none;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 30px;
  }
  .hero-overlay {
    padding: 80px 20px 40px;
  }
  .hero-content {
    margin-top: 100px;
    margin-bottom: 60px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-fade {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-fade {
    height: 150px;
  }
}









.contact-section {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  max-width: 1200px;
  margin: 0 auto;
  min-height: 70vh;          /* ensures vertical centering space */
}

.contact-form {
  flex: 1;
  min-width: 320px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #0f0f0f;
  padding: 40px;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.contact-form h2 {
  font-size: 2rem;
  color: #bfa133;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  background-color: #171717;
  color: #fff;
  font-size: 1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #1e1e1e;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 14px 24px;
  background-color: #bfa133;
  color: #000;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #d7b94e;
  transform: translateY(-2px);
}

/* Contact Info (centered) */
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal centering */
  justify-content: center; /* vertical centering */
}

.contact-info h3 {
  font-size: 1.6rem;
  color: #a88e5c;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info a {
  color: #bfa133;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #fff;
}

.contact-socials {
  margin-top: 30px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-socials a {
  font-size: 1rem;
  color: #a88e5c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-socials a:hover {
  color: #fff;
}

/* Map Section stays below */
.map-section {
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    min-height: auto; /* reset for mobile */
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form h2 {
    font-size: 1.6rem;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .map-section iframe {
    height: 300px;
  }
}
