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


  body {
    font-family: "Poppins", sans-serif;
    color: #333;
    background-color: #f3f3f3;
    line-height: 1.6;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: url("hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for text contrast */
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1; /* sits above the overlay */
    max-width: 90%;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
/* 
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif; */
  }
  
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  /* Location Cards Container */
  .locations {
    display: flex;
    flex-wrap: wrap;          /* Allows wrapping on smaller screens */
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
  
  /* Individual Location Box */
  .location-container {
    background-color: #FAF6EB; /* White background for the box */
    color: #333;
    border-radius: 6px;
    padding: 1.5rem;
    min-width: 250px;          /* Gives a minimum width so it doesn't get too small */
    max-width: 300px;
    text-align: center;        /* Center text inside the box */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* Dark Red CT Box */
.location-container.location-ct {
    background-color: #8B0000; /* dark red */
    color: #fff;              /* make text white for contrast */
  }
  
  /* Ensure links inside CT box are also readable */
  .location-container.location-ct a {
    color: #fff;              /* link text white */
    text-decoration: underline;
  }

  /* Button Style */
  .btn {
    display: inline-block;
    padding: 1.8rem 3rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
    color: #fff;
    background-color: #1a516e; /* Navy/blue tone */
    letter-spacing: 1px;
  }
  
  .btn:hover {
    background-color:  #2d2d2d; /* Slightly darker on hover */
  }

    /* Button Red Style */
    .btn-ct {
        display: inline-block;
        padding: 1.75rem 3rem;
        font-size: 1rem;
        text-decoration: none;
        font-weight: 600;
        border-radius: 6px;
        transition: background 0.3s ease;
        color: #fff;
        background-color: #8B0000; /* dark red tone */
        letter-spacing: 1px;
      }
      
      .btn-ct:hover {
        background-color:  #2d2d2d; /* Slightly darker on hover */
      }

  /* Location Info (Address & Phone) */
  .location-info {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #555;         /* Darker text inside the box */
  }
  
  .location-info a {
    color: #1a516e;      /* Link color for phone */
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #1a516e;
    color: #fff;
    position: relative;
  }
  
  footer p {
    margin: 0;
  }
  
  footer p a {
    color: #cda45e;    /* or your preferred hex color */
    text-decoration: none; /* optional: remove underline */
  }

  /* 
     Responsive Breakpoints
  */
  
  /* Tablet and below (768px) */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.25rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }
  
  /* Mobile and below (480px) */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }
    .hero p {
      font-size: 0.95rem;
    }

  }
  