*{margin:0;padding:0;box-sizing:border-box;}
body{background:#111;color:#eee;font-family:sans-serif;line-height:1.4;overflow-x:hidden;}
h2{font-size:2rem;margin-bottom:1rem;color:#ffcc00;}

/* HEADER & NAVBAR */
.site-header{position:sticky;top:0;background:#000;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center;z-index:1000;}
.logo{font-size:1.5rem;color:#ffcc00;font-weight:bold;}
/* Navbar Reset */
.navbar {
  background: #111;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between; /* ✅ logo left, links right */
  align-items: center;
}

/* Logo */
.navbar .logo {
  font-size: 20px;
  font-weight: bold;
  color: #f1d30e;
}

/* Nav links */
.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f4b400;
}

/* Dropdown */
.navbar li {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  flex-direction: column;
  min-width: 200px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
  z-index: 99;
}
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  padding: 12px 15px;
  color: #ddd;
}
.dropdown-menu li a:hover {
  background: #222;
  color: #fff;
}

/* Hamburger (mobile) */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #111;
    width: 100%;
    padding: 10px;
  }

  .navbar ul.showing {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    padding-left: 15px;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

/* CONTACT SECTION */
.contact-section{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  padding:3rem 2rem;
}

.contact-text{
  flex:1 1 500px;
}

.contact-text p{
  line-height:1.7;
  margin-bottom:1.5rem;
}

.contact-form{
  flex:1 1 400px;
  background:#222;
  padding:2rem;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.5);
}

.contact-form h2{
  color:#ffcc00;
  margin-bottom:1rem;
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.contact-form input, .contact-form select, .contact-form textarea{
  padding:.8rem 1rem;
  border-radius:6px;
  border:none;
  outline:none;
  font-size:1rem;
  background:#333;
  color:#eee;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#bbb;
}

.contact-form button{
  padding:.8rem 1rem;
  background:#ffcc00;
  color:#111;
  border:none;
  font-weight:bold;
  cursor:pointer;
  transition:transform .3s, background .3s, color .3s;
}

.contact-form button:hover{
  transform:scale(1.05);
  background:#fff;
  color:#000;
}

/* FOOTER */
.site-footer{padding:1.5rem 2rem;background:#000;text-align:center;margin-top:2rem;}
.site-footer p{margin-bottom:.8rem;}
.site-footer .social a{color:#eee;margin:0 .5rem;text-decoration:none;transition:color .3s;}
.site-footer .social a:hover{color:#ffcc00;}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-section{
    flex-direction:column;
  }
  .contact-text, .contact-form{
    flex:1 1 100%;
  }
}
.social-box {
  display: flex;
  gap: 20px;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.social-icon {
  font-size: 40px;
  color: #fff;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #f39c12; /* Gold-ish hover to match UI */
}
/* Footer */
.footer { background-color: #020202; color: white; text-align: center; padding: 20px 10px; margin-top: auto; width: 100%; }
.footer a { color: white; text-decoration: none; margin: 0 10px; font-weight: bold; }
.footer a:hover { text-decoration: underline; }
