@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #161513;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;

}

body, html {
  overflow-x: hidden;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #161513;
}

.logo img {
  width: 170px;       
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #c5c6c7;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn.contact {
  background: #CA9D2E;
  color: #fff;
}

.btn.contact:hover {
  background: white;
  color:black;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #c5c6c7;
  transition: all 0.3s;
}

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    text-align: center;
    margin: 0 auto; /* centers the section safely */
    box-sizing: border-box;
}


/* Contact Info Boxes (Top Section) */
.contact-info-boxes {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    flex-wrap: nowrap; 
    gap: 40px; 
    margin-bottom: 60px;
}

.info-box {
    flex: 0 0 250px; 
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #b8860b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    font-size: 1.5em;
    color: #1a1a1a;
}

.info-box h3 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-box p {
    font-size: 0.9em;
    margin-bottom: 3px;
}

/* Get in Touch Title */
.get-in-touch-title {
    margin-bottom: 40px;
}

.get-in-touch-title h2 {
    font-size: 2 em;
    font-weight: 700;
    color: #ffffff;
}

/* Contact Form */
.contact-form-container {
    background-color: #222222; 
    padding: 50px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #333333; 
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background-color: #333333; /* Options background */
    color: #ffff;
}

/* Style for selected disabled option */
.form-group select option[disabled]:checked {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border: 1px solid #b8860b; 
}

.form-group textarea {
    resize: vertical; 
    min-height: 80px; 
    max-height: 150px;
}

.send-message-button {
    background-color: #b8860b; 
    color: white; 
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.send-message-button:hover {
    background-color: #d4a72d; 
    transform: translateY(-2px);
}

/* Footer */
.footer {
  color: white;
  padding: 100px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
  margin: 10px 0;
}

.footer-column h3 {
  color: #CA9D2E;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-column p,
.footer-column a {
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #CA9D2E;
}

.social-icons a {
  color: white;
  margin-right: 12px;
  font-size: 1.2em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #CA9D2E;
  transform: scale(1.2);
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9em;
  color: #ccc;
}

/* -------------------------------------------------------------------------------------Responsive ----------------------------------------------------------------------------------------- */

/* Navbar*/
@media (max-width: 768px) {

  .navbar {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo img {
    width: 130px; 
    transition: all 0.3s ease;
    transform: translateX(-10px); 
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    background: #CA9D2E;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .navbar.active {
    flex-direction: column;
    align-items: center;
  }

  .navbar.active .nav-links,
  .navbar.active .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #161513;
    border-top: 1px solid #CA9D2E;
    position: relative; /* keeps content in normal flow */
    padding: 20px 0;
    gap: 18px;
    animation: slideDown 0.4s ease forwards;
  }

  .navbar.active .nav-links a {
    font-size: 16px;
    color: #c5c6c7;
  }

  .navbar.active .nav-links a:hover {
    color: #ffffff;
  }

  .navbar.active .nav-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 80%;
    text-align: center;
  }

  /* Slide-down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

 
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}

/* Contact section */
@media (max-width: 768px) {
  .contact-info-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .info-box {
    flex: 1 1 45%;
    max-width: 100%;
  }
}

/* Mobiles */
@media (max-width: 540px) {
  .contact-info-boxes {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    padding: 0 10px;
  }

  .info-box {
    display: flex;
    align-items: center;
    text-align: left;
    flex: 1 1 auto;
    width: 100%;
    padding: 15px;
  }

  .icon-circle {
    margin: 0 15px 0 0;
  }

  .info-box h3 {
    margin-bottom: 5px;
    font-size: 1em;
  }

  .info-box p {
    font-size: 0.85em;
  }
}

/* Small mobile screens */
@media (max-width: 390px) {
  .info-box {
    padding: 10px;
  }

  .icon-circle {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    margin-right: 10px;
  }

  .info-box h3 {
    font-size: 0.75em;
  }

  .info-box p {
    font-size: 0.7em;
  }
}
/* Media Queries for Contact Form */

/* Large tablets / small desktops */
@media (max-width: 992px) {
    .get-in-touch-title h2 {
        font-size: 1.8em;
    }

    .contact-form-container {
        padding: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95em;
    }

    .send-message-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
}

/* Tablets / large mobiles */
@media (max-width: 768px) {
    .get-in-touch-title h2 {
        font-size: 1.6em;
    }

    .contact-form-container {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9em;
    }

    .send-message-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Large mobiles */
@media (max-width: 540px) {
    .get-in-touch-title h2 {
        font-size: 1.4em;
        margin-bottom: 25px;
        text-align: center;
    }

    .contact-form-container {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
        font-size: 0.85em;
    }

    .send-message-button {
        padding: 8px 18px;
        font-size: 0.85em;
    }
}

/* Small mobiles */
@media (max-width: 380px) {
    .get-in-touch-title h2 {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .contact-form-container {
        padding: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 6px;
        font-size: 0.8em;
    }

    .send-message-button {
        padding: 6px 15px;
        font-size: 0.8em;
    }
}


/* Footer */
@media (max-width: 868px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
    gap: 15px; /* Reduce space between columns */
  }

  .footer-column {
    min-width: 100%;
    margin: 8px 0;
  }
}

@media (max-width: 540px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-logo {
    width: 110px;
  }

  .footer-column h3 {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.85em;
    margin-bottom: 6px;
  }

  .social-icons a {
    font-size: 1.1em;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }

  .footer-column {
    margin-bottom: 6px;
  }
}

@media (max-width: 380px) {
  .footer {
    padding: 30px 10px 15px;
  }

  .footer-logo {
    width: 90px;
    margin-bottom: 10px;
  }

  .footer-column h3 {
    font-size: 0.95em;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.8em;
  }
}

/* Footer Bottom  */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 0.85em;
    }
}

@media (max-width: 540px) {
    .footer-bottom {
        font-size: 0.8em;
    }
}
@media (max-width: 390px) {
    .footer-bottom {
        font-size: 0.55em;
    }
}
