* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: white;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0a1f4c

}

p {
  margin-top: 16px;
}
p + p {
  margin-top: 10px;
}
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
}


.page-wrapper{
  min-height: 100vh;
  background-image: url("assets/BG1.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.page-wrapper-alt{
  min-height: 100vh;
  background-image: url("assets/BG2.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
}

/* Header */
.site-header {
  background: linear-gradient(180deg, #aeadad, #7f8385);
  color: white;
  padding: 24px;
}

/* Contact Bar */
.contact-bar {
  /* background: #f2f2f2; */
  padding: 8px 16px;
}

.contact-bar-alt {
  background: linear-gradient(180deg, #575757, #484848);
  padding: 8px 16px;
}
.contact-info {
  max-width: 1200px;
  margin: 10px;
  display: flex;
  flex-direction: column;      /* ← key change */
  align-items: flex-end;       /* right aligned */
  gap: 6px;
  font-size: 0.9rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item .icon {
  height: 18px;
  width: 18px;
  text-align: center;
  object-fit: contain;
}

/* Branding */
.branding {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 16px;             /* space between logo and text */
  padding-bottom: 12px;
  /* border-bottom: 1px solid #ddd; */
}

/* Logo */
.branding-logo img {
  height: 120px;
  width: auto;
  display: block;
}

/* Company name */
.branding-name {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.5rem;
  color: #c3000f;
  -webkit-text-stroke: 1px white;
  letter-spacing: 0.5px;
  white-space: wrap;  /* keeps name on one line */
}


/* Main Layout */
.main-layout {
  max-width: 1200px;
  padding: 50px 30px;
  display: flex;
  gap: 20px;
}

/* Menu */
.side-menu {
  width: 200px;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  align-items: center;
  /* border-right: 1px solid #ddd; */
}

.side-menu a {
  padding: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: lighter;
  /* border-bottom: 1px solid #ddd; */
}

.side-menu a.active {
  /* background: #4f46e5; */
  color: white;
  font-weight: bold;
}

.side-menu a:hover {
  color: #787878;
}

.side-menu-alt {
  width: 200px;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  align-items: center;
  /* border-right: 1px solid #ddd; */
}

.side-menu-alt a {
  padding: 8px;
  text-decoration: none;
  color: #000000;
  font-weight: lighter;
  /* border-bottom: 1px solid #ddd; */
}

.side-menu-alt a.active {
  /* background: #4f46e5; */
  color: rgb(0, 0, 0);
  font-weight: bold;
}

.side-menu-alt a:hover {
  color: #787878;
}


/* Top icon */
.menu-icon-top {
  padding: 16px;
  text-align: center;
  /* border-bottom: 1px solid #ddd; */
}

.menu-icon-top img {
  height: 48px;
  width: auto;
}

.section-top {
  text-align: right;
  background-image: url('assets/hero.png');
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  line-height: 200%;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 120px;
  height: 340px;

}

.mob-section{
  display: none;
}
.mob-section-top{
  display: none;
}

/* Content Area */
.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  /* border: 1px solid #ddd; */
  background-color: #ffffff;
}

.section-bottom{
    padding: 20px;
}
.no-bullets {
  padding-top: 20px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Tab Content Logic */
.section-bottom .tab-content {
  display: none;
}

.section-bottom .default {
  display: block;
}

/* Show target */
.section-bottom .tab-content:target {
  display: block;
}

/* Hide default when target active */
.section-bottom .tab-content:target ~ .default {
  display: none;
}

.two-column-section {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Shared column styling */
.column {
  flex: 1;
}

/* Text column */
.column-text {
  font-size: 0.95rem;
}

/* Map column */
.column-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}
/* Footer */
.site-footer {
  background: linear-gradient(180deg, #aeadad, #7f8385);
  color: black;
  padding: 24px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

  /* .page-wrapper {
    background-image: none; 
    background-color: #0a1f4c; 
  } */

  .main-layout {
    flex-direction: column;
  }
  .contact-info {
      align-items: center;
      text-align: center;
    }

  .section-top h2{
    display: none;
  }

  .section-top .no-bullets{
    display: none;
  }
   .side-menu {
    padding-top: 0%;
    width: 100%;
    flex-direction: row;
    justify-content: center;   /* ← centers menu items */
  }

  .side-menu-alt{
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .menu-icon-top {
    display: none;
  }

  .main-layout {
  padding: 10px 30px;
  }

  .side-menu a {
    flex: 1;
    text-align: center;
  }
  .side-menu-alt a{
    flex: 1;
    text-align: center;
  }
  .mob-section {
  display: block;
  background-color: #ffffff;
  }
  .mob-section-top{
    display: block;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    line-height: 200%;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
