@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(248, 249, 252);
  color: #000;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  height: 60px;
  background-color: rgba(214, 204, 200, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  padding: 0 20px;
  overflow: visible; /* let hamburger & close icon show fully */
}

header nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  /* Remove any negative margin for the header logo */
  margin-left: 0;
  display: flex; /* If you want to keep .logo as a flex container, that’s fine */
  align-items: center;
}

/* The anchor that wraps the image + text */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* remove default underline */
}

.logo-link img {
  height: 40px; /* or match header height */
  width: auto;
  object-fit: contain;
}

.logo-text {
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: (3, 54, 2);
}
.nav-links{
  flex: 1; /* 1 means the item will grow to fill the available space, sharing it equally with other items that also have the flex grow value set*/
  text-align: right;
}
.nav-links ul li{
  list-style: none;
  display: inline-block; /* makes things appear on the same line as other elements. The elements will appear side by side*/
  padding: 8px 12px;
  position: relative;

}

.nav-links ul li a{
  color: rgba(3, 54, 2);
  text-decoration: none;
  font-size: 13px;
  font-weight: semibold;
  
}

/* Hamburger icon hidden by default (shown via media query) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #eee;
  cursor: pointer;
}

header a {
    color: #000;
    text-decoration: none;
    font-size: .9em;
    padding: 10px 15px;
}

header a:hover {
    background-color: rgb(88, 88, 90,.7);
    color: #000;
    border-radius: 5px;
}
/* Close icon hidden by default; shown in media query */
.close-icon {
  display: none; /* Only show on mobile */
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}


/* Slide-in nav for mobile/tablet */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    padding-top: 60px;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  .nav-links ul li {
    margin: 10px 0;
  }
  .nav-links ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: #fff;
  }
  .close-icon {
    display: block; /* Show the X on mobile/tablet */
    position: absolute;
    top: 15px;
    right: 15px;
  }
}

/* Hero Section (unchanged except removing the .hero-content margin-left) */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust as needed */
  background: url('semperimages/dl12.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Remove padding if you like; the overlay handles spacing now */
  padding: 0;
}

/* New overlay container */
.hero-overlay {
  position: absolute;
  top: 60px;                        /* Start below the 60px-high nav bar */
  width: 300px;                     /* Matches hero-content max width */
  height: calc(100% - 60px);         /* Reduce total height by nav bar height */
  background-color: rgba(16, 56, 19, 0.8); /* Semi-transparent overlay */
  border-radius: 4px;
  display: flex;
  align-items: center;              /* Vertically center the hero content */
  padding: 1rem;                    /* Padding inside the overlay */
  margin-left: 2rem;                /* Offset from left side */
  z-index: 1;
}


/* Hero content inside the overlay */
.hero-content {
  max-width: 300px;      /* Matches overlay width */
  color: #eee;
  z-index: 1;
  /* Remove margin-left: 1rem; since .hero-overlay handles spacing */
}
/* Semi-transparent overlay 
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(189, 184, 184, 0.5);
}*/

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 26px;
  line-height: 2.0em;
  margin-bottom: 60px;
  font-weight: 700;
  text-align: center;
}

.hero-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: center;
  color: #eee;
}

/* Center hero buttons horizontally */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btnone {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 7rem;
  text-align: center;
}

.btn-primary {
  background-color: rgb(214, 204, 200);
  color: rgb(10, 10, 10);
}

.btn-primary:hover {
  background-color: rgb(130, 130, 133);
}

.btn-secondary {
  background-color: rgb(214, 204, 200);
  color: rgb(10, 10, 10);
 /* border: 2px solid #000;*/
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgb(130, 130, 133);
  color: #fff;}

body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(223, 215, 211); /* match your other pages */
  color: #000;
}


/* Container for all location elements */
/* Container for all location elements */
.location-section {
  display: flex;
  flex-direction: column;  /* Stack elements vertically */
  gap: 20px;               /* Spacing between cards */
  max-width: 1200px;       /* Optional: control overall width */
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
}

/* Each rounded card */
.location-card {
  display: flex;
  background-color: rgb(243, 239, 237);  /* Slightly lighter background for contrast */
  border-radius: 10px;
  overflow: hidden;        /* Ensure corners remain rounded and hide overflow */
  height: 300px;           /* Fixed height so all cards match */
}

/* Text section */
.location-content {
  flex: 1;                 /* Fill remaining horizontal space */
  padding: 20px;
  overflow-y: auto;        /* Scroll if text exceeds container height */
}

.location-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #030303;
  text-align: center;
  padding-bottom: 40px;
}

.location-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgb(10, 10, 10);
  text-align: center;
}

/* Image section */
.location-image {
  width: 40%;              /* Fixed width for image column */
  overflow: hidden;        /* Hide any overflow */
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* Scale and crop the image to fill the area */
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-info h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0a043f;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.info {
  margin-bottom: 20px;
}

.information {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.information .icon {
  width: 30px;
  margin-right: 10px;
}

.social-media {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #0a043f;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 5px;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #333;
}

.contact-form {
  flex: 1;
  padding: 20px;
  background-color: #0a043f;
  border-radius: 10px;
  color: #fff;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.input-container {
  position: relative;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #bbb;
  transition: 0.3s;
  pointer-events: none;
}

.input-container .input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background-color: #fff;
  color: #333;
  outline: none;
}

.input-container textarea.input {
  min-height: 120px;
  resize: none;
}

.contact-form .btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background-color: #fff;
  color: #0a043f;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background-color: #ddd;
}

/*Footer*/

.footer {
  background-color: #000;  /* Black background */
  color: #fff;             /* White text */
  padding: 20px 0;
  font-family: Arial, sans-serif; /* Or your preferred font */
}

.footer-container {
  max-width: 1200px;       /* Adjust as needed */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Left Column: Logo & Brand Text === */
/* For Footer Logo: Match the nav styles */
.footer-brand .brand-logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand .brand-logo span {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 2px;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  height: 50px;            /* Adjust as needed */
  width: auto;
  margin-right: 10px;
}

.brand-text {
  line-height: 1.2;
  font-size: 1rem;
}

/* === Center Column: Policy Links === */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;     /* Centers links horizontally */
  gap: 6px;                /* Space between links */
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-links p {
  font-size: 0.8rem;
  margin: 0;
}

/* === Right Column: Social Icons === */
.footer-social {
  display: flex;
  gap: 15px;               /* Space between icons */
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ccc;
}

/* === Responsive Adjustments (Optional) === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .about-container, .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .contact-info, .contact-form {
    flex: none;
  }
  .nav-links ul {
    flex-direction: column;
    gap: 10px;
  }
}