/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:#131e3d ;
  color: #fff;
  display: flex;
  flex-direction: column;
   margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  /* min-height: 100vh; */
}



/* Base Header Style */
/* header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #131e3d;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
} */
 header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #131e3d;
  width: 100%;
  box-sizing: border-box;
}

/* Logo Styling */
.logo img {
  height: 80px;
  width: auto;
}

/* Navigation Buttons */
nav {
  display: flex;
  flex-direction: row;  /* Ensures side-by-side layout */
  align-items: center;
  justify-content: flex-end; /* Aligns buttons to the right if needed */
  gap: 10px;  /* Space between buttons */
}

nav a {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  text-decoration: none;
  color: white;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: 0.3s;
}

nav a.active {
  background-color: #cdad7d;
  color: white;
}
.logo{
  height: 100px; width: 280px;
}
/* Responsive Fix */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  nav a {
    padding: 10px 16px;
  }
}

/* Main */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-image: url('city.jpeg');
  background-size: cover;
  background-position: center;
  position: relative; /* required for overlay */
  z-index: 1;
}

/* Black overlay */
main::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  z-index: -1; /* behind the content */
}


main h1 {
  font-size: 2.5rem;
  color: #c1a46d;
  /* letter-spacing: 2px; */
  /* font-weight: 800; */
  font-family:"League Spartan",sans-serif;
}
footer {
  background-color: #131e3d;
  border-top: 2px solid #7749ff;
  padding: 40px 60px;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-rights {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.footer-rights p {
  margin-top: auto;
  font-size: 0.9rem;
  color: #ccc;
}


.footer-column h3 {
  color: #c1a46d;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1;
}


/* compliance */
.compliance-section {
  padding: 0px 0px;
  margin-left: 30px;
  min-height: 80vh;
  
}

.compliance-section h1 {
  color: #c1a46d;
  font-size: 1.8rem;
  font-weight: bold;
  font-family:"League Spartan",sans-serif;
}

.compliance-section a {
  display: inline-block;
  margin: 10px;
 
  text-decoration: none;
}

.compliance-section button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
   font-size: 20px;
   margin-top: 50px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.compliance-section button:hover {
  background-color: #444;
}
@media (max-width: 768px) {
   header {
    display: flex;
    flex-direction: row;          /* Ensure row layout */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
  }

  .logo img {
    width: 130px;
    height: auto;
  }

  nav {
    display: flex;
    gap: 10px;
  }

  nav a {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
  }

  .footer-rights {
    text-align: left;
  }
}

@media (max-width: 480px) {
  main{
    min-width: 100%;
  }
  main h1 {
    font-size: 1.8rem;
  }

  .compliance-section button {
    font-size: 16px;
    padding: 10px 18px;
    min-width: 100%;
  }

  .logo img {
    width: 100px;
    height: 60px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-rights {
    text-align: center;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .contact-row {
    flex-direction: column;
    gap: 8px;
  }
}

