@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Libre+Franklin:wght@500;700;900&display=swap');

/* Set up */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --font-family: 'Libre Franklin', sans-serif;
  --font-family-alt: 'Inter', sans-serif;
  --font-sz-heading: 1.5rem;
  --font-size-base: clamp(1rem, 2.5vw, 1.25rem);
  --light: #E9E8E8;
  --dark: #2C2C2C;
  --d-blue: #0D1821;
  --nav-link: #BDBABA;
  --accent: #550000;

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  letter-spacing: 0.07em;
  color: var(--dark);
}

body {
  overflow-x: hidden;
}

/* Headings*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
  color: var(--d-blue);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
}

h1, .h1 { 
  font-size: var(font-sz-heading);
}

/* Paragraph */
p {
  font-family: var(--font-family-alt);
  font-weight: 500;
  line-height: 1.25;
}

.hero-content h1, .hero-content p, .hero-content.h1 {
  font-family: var(--font-family-base);
  color: var(--light);
}

small {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Navigation Bar & When Page Active Show Underline & Effect when Link is hovered over */
.navbar {
  transition: background-color 0.3s ease;
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  height: 8vh;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.navbar-container{
  width: 100%;
}

@media (min-width: 790px) {
  .navbar {
    height: 13vh;
  }
}


a.nav-link {
  font-family: var(--font-family-alt);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

a.active {
  color: var(--accent) !important;
  text-decoration: underline;
  text-underline-offset: 7px; 
  text-decoration-thickness: 2px;
}

a.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 7px; 
  text-decoration-thickness: 2px;
}

.navbar-brand img {
  padding-right: 35px;
  width: 100%;
  height: auto;
}

.navbar-toggler {
  border: 1px solid var(--accent);
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent);
}
.navbar.clicked {
  background-color: #fff !important;
  transition: none !important;
}

/* Hero & Nav Bar Section */
section.hero {
  min-height: 795px;
  background-image: url('../images/hero-temp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Better hero view for smaller screens */
@media (max-width: 685px) {
  section.hero {
    min-height: 500px;
  }
}

/* Buttons */
.transparent-white, .transparent-red, .red, .white {
  /* text properties */
  color: var(--light);
  text-transform: uppercase;
  font-family: var(--font-family-alt);
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;

  /* button properties */
  background-color: none;
  border: 3px solid var(--light);
  padding: 12px 0;
  width: 310px;
  cursor: pointer;
}

.transparent-red, .transparent-red-sm {
  color: var(--accent);
  border: 3px solid var(--accent);
  align-self: center;
}
.transparent-red-sm {
  padding: 8px 8px;
  font-size: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.red{
  /* button properties */
  background-color: var(--accent);
  color: var(--light);
  border: 3px solid var(--accent);

} 
.white {
  /* button properties */
  background-color: var(--light);
  color: #2C2C2C;
}

.red:hover, .white:hover {
  background-color: var(--dark);
  border: 3px solid var(--dark);
  color: var(--light);
  transition: all 0.3s ease-in-out;
}

.transparent-white:hover {
  background-color: var(--light);
  color: #2C2C2C;
  transition: all 0.3s ease-in-out;
}

.transparent-red:hover, .transparent-red-sm:hover {
  background: var(--accent);
  transition: all 0.3s ease-in-out;
  color: #fff;
}

/* Hero Text Shadow */
.shadow-text{
  text-shadow: 0 5px 10px rgba(20, 20, 20, 0.815);
}

.custom-margin{
  margin-top: 150px;
}

@media (max-width: 685px) {
  .custom-margin {
    margin-top: 60px;
  }
}

/* Footer Style */
#current-year {
  font-size: 1rem;
}

/* Base layout (desktop) */
footer .navbar-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

footer .navbar-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* allows wrapping before mobile breakpoint */
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Scale links down slightly as screen gets smaller */
@media (max-width: 1200px) {
  footer .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 992px) {
  footer .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
  }
}

/* Mobile layout — stack vertically and center */
@media (max-width: 768px) {
  footer .navbar-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  footer .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }

  footer .navbar-nav .nav-link {
    display: block;
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}



/* 
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    order: -1; 
    margin: 1rem 0;
  }

  .footer-nav {
    order: 0;
  }

  .footer-right {
    order: 1;
  }

  .footer-nav ul,
  .footer-right ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav ul li,
  .footer-right ul li {
    margin: 5px 0;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
  }

  .footer-logo {
    order: 0;
    flex: 1 1 200px;
    margin: 1rem 0;
  }

  .footer-nav {
    order: 1;
    flex: 1 1 300px;
    display: flex;
    justify-content: flex-end;
  }

  .footer-right {
    order: 2;
    flex: 1 1 300px;
    display: flex;
    justify-content: flex-end;
  }

  .footer-nav ul,
  .footer-right ul {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
  }
} */
