/*==========================================
BASIC STYLINGS
============================================*/
html {
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: white;
}

/*==========================================
FONTS
============================================*/
/* Army Text */
.stencil-text {
  font-family: "Stencil", "Stencil Std", sans-serif;
  font-weight: normal;
}

/* Links */
.bodoni-moda-sc-regular,
.nav-links .nav-link span {
  font-family: "Bodoni Moda SC", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Text */
.noto-serif-regular {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Headers */
.merriweather-regular {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Under Headers*/
.scope-one-regular {
  font-family: "Scope One", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

/*==========================================
HEADER
============================================*/
/* Navigation Links */
.nav-bar .nav-container {
  color: black;
  flex-direction: row;
  text-align: right;
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.nav-container a {
  text-decoration: none;
}

.nav-links .nav-link {
  font-size: large;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  padding: 5px 10px;
  gap: 15px;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-right: 50px;
}

.nav-link {
  font-weight: 100;
  color: black;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: rgb(255, 205, 58);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Logo */
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 30px;
  flex-shrink: 0;
  background-color: rgb(255, 205, 58);
}

#logo-title {
  font-size: 40px;
  color: black;
}

#logo-subtitle {
  font-size: 25px;
  color: black;
  margin-top: 2px;
}

/* Hamburger Functionality */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  margin-right: 30px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: black;
  margin: 4px 0;
  transition: 1.5s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

/*==========================================
FOOTER
============================================*/
footer {
  margin: 0;
  padding: 0;
}

#footer-section {
  background-color: rgba(0, 0, 0, 0.7);
  flex-basis: auto;
  height: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
}

/*==========================================
BUTTONS
============================================*/
.buttons {
  display: block;
  width: 200px;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  border-style: ridge;
  border-radius: 5px;
  border-color: black;
  background-color: transparent;
  font-size: larger;
  color: black;
}

/*==========================================
TITLES AND DESCRIPTIONS STYLINGS
============================================*/
.main-titles {
  text-align: center;
  font-size: 50px;
  margin: 0 0 0 0;
}

.description {
  display: block;
  text-align: center;
  font-size: 20px;
  margin: 40px 40px 40px 40px;
}

/*==========================================
MAIN CONTAINER STYLING
============================================*/
.main-container,
.left-right-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.left-right-container {
  height: 500px;
}

/*==========================================
LEFT AND RIGHT SECTIONS
============================================*/
.left-side-image img,
.right-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  margin: 0;
}

.right-side .description {
  margin: 20px 40px;
  text-align: center;
}

.left-side,
.left-side-image,
.right-side-image {
  width: 50%;
  display: flex;
}

.right-side,
.right-side-description,
.left-side-description {
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 0;
}

.left-side-description,
.right-side-description {
  background-color: white;
}

/*==========================================
PICTURE HEADERS
============================================*/
.top-header {
  position: relative;
  width: 100%;
  height: 600px;
}

.picture-header {
  position: absolute;
  width: 100%;
  height: 100%;
}

.picture-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.picture-text {
  position: absolute;
  top: 150px;
  left: 100px;
  max-width: 650px;
}

.picture-text h2 {
  font-size: 100px;
  text-align: left;
}

/*==========================================
CONTACT US
============================================*/
#contact-us-section {
  margin: 40px 40px 40px 40px;
}

#contact-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 5% 5% 5%;
  gap: 80px;
}

#contact-us-section .left-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#contact-us-section .right-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0%;
  text-align: center;
}

#phone-contact,
#email-contact {
  display: flex;
  justify-content: center;
  padding: 10px 30px 10px 30px;
  font-size: xx-large;
}

.contact-header {
  font-size: 40px;
}

.contact-info {
  font-size: 30px;
}

#mail-link {
  color: black;
  text-decoration: none;
  font-size: 30px;
}

#contact-hours {
  font-size: 30px;
  padding: 0%;
  margin: 0;
}

#footer-section {
  text-align: center;
}

/*==========================================
REVEAL FEATURE
============================================*/
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.5s ease,
    transform 2s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/*==========================================
MOBILE OR BROWSER ADJUSTABILITY
============================================*/
@media screen and (max-width: 1500px) {
  .nav-bar .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 80px;
    padding: 10px 20px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    flex-shrink: 0;
    order: 1;
    background-color: rgb(255, 205, 58);
  }

  #logo-title {
    font-size: 30px;
  }

  #logo-subtitle {
    font-size: 18px;
    color: black;
    margin-top: 2px;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
    order: 2;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(248, 248, 248, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    margin-right: 0;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 80%;
    padding: 15px;
    margin: 5px 0;
    font-size: 20px;
    color: black;
    border-bottom: 1px solid #ddd;
  }

  .nav-link:hover {
    background-color: #e0e0e0;
  }
}

@media screen and (max-width: 1200px) {
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
  }

  .image-size {
    object-fit: cover;
    width: 100% !important;
    height: 500px !important;
  }

  .description {
    display: block;
    text-align: center;
    font-size: 20px;
    margin: 40px 40px 40px 40px;
  }

  .main-container,
  .left-right-container {
    height: auto !important;
    flex-direction: column !important;
    width: 100%;
  }

  .left-side,
  .left-side-image {
    width: 100%;
    display: flex;
    order: 1;
  }

  .left-side-image,
  .right-side-image {
    width: 100% !important;
    display: flex;
    order: 1;
  }

  .left-side-image img,
  .right-side-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .right-side,
  .right-side-description {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    box-sizing: border-box;
  }

  .left-side-description,
  .right-side-description {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    box-sizing: border-box;
    order: 2;
  }

  .picture-text {
    max-width: 450px;
    top: 125px;
    left: 70px;
  }

  .picture-text h2 {
    font-size: 100px;
    text-align: center;
  }

  .picture-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #contact-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 3% 0 3% 0;
  }

  #contact-info img {
    align-self: center;
    width: 50px;
    height: auto;
  }

  #contact-us-section {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  #contact-us-section .left-side,
  #contact-us-section .right-side {
    width: 100%;
    padding: 20px;
    border-left: none;
  }

  .right-side .description {
    margin: 20px 0;
    text-align: center;
  }

  .right-side #buttons {
    margin: 20px auto;
  }
}
