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

/* Body & background */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  margin: 0;
  min-height: 100vh;
  background: url('../images/bgimg.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* Overlay for readability */
.main-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Navbar */
header {
  background: black;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #f4b400; /* Yellow */
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
  cursor: default;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  background: #db4437; /* Red */
  color: white;
}

/* Contact Section */
.contact-section {
  max-width: 600px;
  width: 100%;
  margin-top: 2rem;
}

.contact-section h1 {
  color: #f4b400; /* Yellow */
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

label {
  font-weight: 600;
  color: #f4b400;
  margin-bottom: 0.3rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1.1rem;
  background: #222;
  color: white;
  resize: vertical;
  transition: background 0.3s ease;
  box-sizing: border-box;
  min-height: 40px;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

input:focus,
textarea:focus {
  outline: 2px solid #f4b400;
  background: #333;
  color: white;
}

.btn-submit {
  background-color: #f4b400;
  border: none;
  border-radius: 30px;
  padding: 1rem 1.8rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

/* Social buttons */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px; /* rounded squares */
  background-color: #444;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  font-size: 28px; /* bigger icons */
  color: white;
  font-weight: 700;
}

.social-buttons .btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 20px rgba(0,0,0,0.5);
}

/* Brand colors override background */
.fb { background-color: #1877F2; }
.fb:hover { background-color: #145dbf; }

.insta { background-color: #E1306C; }
.insta:hover { background-color: #b92758; }

.tiktok { background-color: #010101; }
.tiktok:hover { background-color: #333; }

.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1da851; }

.snapchat {
  background-color: #FFFC00;
  color: black;
}
.snapchat:hover {
  background-color: #e6e600;
  color: black;
}

.threads {
  background-color: #000;
}
.threads:hover {
  background-color: #333;
}

.youtube { background-color: #FF0000; }
.youtube:hover { background-color: #cc0000; }

.email {
  background-color: #f4b400;
  color: black;
  font-size: 32px;
  font-weight: 900;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.email:hover {
  background-color: #db4437;
  color: white;
}

/* Footer */
footer {
  background: black;
  color: #f4b400;
  text-align: center;
  padding: 1rem 0;
  font-weight: 600;
  margin-top: 4rem;
}

/* Responsive */
@media (max-width: 600px) {
  .social-buttons .btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .social-buttons .btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    max-width: 90vw;
  }

  .contact-section h1 {
    font-size: 2rem;
  }
}
/* ========== HAMBURGER MENU (Mobile Only) ========== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f4b400; /* Yellow */
  border-radius: 5px;
  transition: 0.4s ease;
}

/* Mobile Menu Grid */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* ========== MOBILE VIEW ========== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(6px);
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: 0.5s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 40%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    transition: 0.3s;
  }

  .nav-links li a:hover {
    background: #db4437;
    color: #fff;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hide default horizontal menu */
  nav ul {
    display: none;
  }
}
