@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./contact-form.css");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f95e4d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/*------------------------------------------------------------------------------Contact Us  page Css
------------------------------------------------------------------------------*/
/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

    /* Contact Info Cards Section */
    .contact-info-cards-section {
      padding: 80px 0;
      background-color: #000000;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .contact-card {
      background-color: #0a0a0a;
      border: 1px solid #d4af37;
      border-radius: 20px;
      padding: 50px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .contact-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .contact-icon svg {
      width: 60px;
      height: 60px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 2;
    }

    .contact-card:hover .contact-icon svg {
      stroke: #d4af37;
    }

    .contact-title {
      font-family: Coldiac;
      font-size: 24px;
      font-weight: 400;
      color: #ffffff;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .contact-details {
      font-size: 18px;
      font-family: McQueen;
      color: #cccccc;
      line-height: 1.5;
    }

    .contact-details a {
      color: #cccccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-details a:hover {
      color: #d4af37;
    }

 
    /* Responsive Styles */
    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .contact-card {
        padding: 40px 30px;
      }
      
      .contact-title {
        font-family: Coldiac;
      }
      
      .contact-details {
        font-family: McQueen;
      }
    }

    @media (max-width: 768px) {
      .contact-info-cards-section {
        padding: 60px 0;
      }

      .contact-card {
        padding: 35px 25px;
      }

      .contact-title {
        font-family: Coldiac;
        font-size: 20px;
      }

      .contact-details {
        font-family: McQueen;
        font-size: 15px;
      }
    }

    @media (max-width: 576px) {
      .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
      }

      .contact-icon svg {
        width: 45px;
        height: 45px;
      }

      .contact-title {
        font-family: Coldiac;
        font-size: 18px;
      }

      .contact-details {
        font-family: McQueen;
        font-size: 14px;
      }
    }

   
