/*LAYOUT*/
/* Make the welcome section use flexbox */
.welcome-container {
    display: flex;
    align-items: center; /* Aligns Courthouse & Welcome text vertically */
    justify-content: flex-start; 
    gap: 10px; /* Adds space between the courthouse image and text */
    padding-left: 10px; 
    padding-bottom:10px;
    width: 100%;
    overflow: visible;
}

/* Courthouse Image */
.courthouse-img {
    width: 55px;  /* Slightly larger for better visibility */
    height: auto;
}

/* Welcome Text */
.welcome-text h1 {
    font-size: 12rem; /* MASSIVE */
    font-family: "Georgia", serif;
    font-weight: 900; /* Super bold */
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents text from wrapping */
    flex-grow: 1; /* Ensures it can expand */
    width: auto; /* Prevent shrinking */
}

/* Align everything to the left */
main {
    display: flex;
    flex-direction: column; /* Ensures sections stack properly */
    align-items: center;
    gap: 50px;
    width: 100%;
    padding: 20px;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align everything at the top */
    gap: 30px;
    padding: 20px;
    width: 100%;
    max-width: 1100px;
}

.hot-topics, .client-experiences {
    width: 65%; /* Allow both to take more space */
}


/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        padding-left: 0;
    }

    .courthouse-img {
        width: 50px;
        height: auto;
    }

    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hot-topics, .client-experiences {
        max-width: 100%;
    }
}


/*NAVBAR*/
/* Mobile Menu Button (Hamburger) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    color: white;
    background: #ae6b5a;
    border: none;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2000;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ae6b5a, #5a1e0f);
    padding: 12px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Navbar List */
.nav-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

/* Navbar Items */
.nav-list li {
    margin: 0;
    padding: 0;
    position: relative;
}

/* Navbar Links */
.nav-list a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to bottom, #969696, #34393c);
    box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .nav-list {
        display: none; /* Hides menu initially */
        flex-direction: column;
        width: 100%;
        background: linear-gradient(to bottom, #ae6b5a, #5a1e0f);
        position: absolute;
        top: 50px;
        left: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-list.show {
        display: flex; /* Shows menu when toggled */
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/*PAGES*/
/* Center the content since there's no sidebar */
.center-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem;
}

/* Optional spacing and cleanup */
.service-text p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service h1 {
    margin-top: 1rem;
    font-size: 2rem;
    text-align: center;
}
body {
    background-color: #959595;
    margin: 0;  
    padding: 0; 
}


.business-tile {
      background-color: #fdfdfd;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .business-tile:hover {
      background-color: #f1f1f1;
    }

    .tile-header h2 {
      margin: 0;
      font-size: 1.5rem;
      text-transform: uppercase;
      text-align: center;
    }

    .tile-content {
      display: none;
      margin-top: 10px;
      font-size: 1rem;
      line-height: 1.6;
    }

    .tile-content.open {
      display: block;
    }

    .close-btn {
      margin-top: 10px;
      color: #0077cc;
      text-decoration: underline;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .center-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  }

  .business-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 32px;
  text-align: center;
}

.business-header .courthouse-img {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
}

.business-header h1 {
  font-size: 2.4rem;
  margin: 0;
}

.business-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}


