/* ===== GENERAL STYLES ===== */
/* Smooth scroll behavior for the entire page */


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #cacbca;
  color: #222;
  scroll-behavior: ease;

}

header {
  background: #494848;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

header .tagline {
  margin-top: 0.5rem;
  font-style: italic;
  color: #bbb;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: #ffcb05;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== HERO SECTION ===== */
#hero {
  background: url("images/IMG-20250821-WA0021.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

#hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  background: #ffcb05;
  color: #111;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: #ffdb4d;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 1rem;
  text-align: center;
  display: grid;

  gap: 2rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  align-self: last baseline;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  align-items: top;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* ===== CONTACT ===== */
.dark {
  background: #111;
  color: #fff;
}

.form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form input, .form select, .form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.form button {
  background: #ffcb05;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 0.8rem;
}

.form button:hover {
  background: #ffdb4d;
}

.form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #999;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

footer a {
  color: #ffcb05;
  text-decoration: none;
}
/* ===== HEADER & NAV ===== */
.header {
  background: #111;
  color: white;
  padding: 15px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
}

.tagline {
  font-size: 13px;
  color: #ccc;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* NAVBAR STYLING */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #1abc9c;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 200px;
    flex-direction: column;
    background-color: #111;
    padding-top: 60px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}


/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 15px;
    gap: 15px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}
/* =====================
   NAVBAR FIX
===================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 15, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .nav-links a {
    padding: 15px 25px;
    font-size: 1.1rem;
  }

  .nav-links.active {
    right: 0;
  }
}
/* =====================
   END NAVBAR FIX

