/* ========================================
   ED LOST LEGIONS — ABOUT PAGE
======================================== */


/* ========================================
   GLOBAL
======================================== */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #F3F0E9;

  color: #111111;

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

img {
  display: block;

  max-width: 100%;
}


/* ========================================
   BRAND

   RED   #B3212E
   GOLD  #B08D57
   CREAM #F3F0E9
======================================== */


/* ========================================
   INTERNAL HEADER
======================================== */

.site-header {
  position: relative;

  width: 100%;
  max-width: 1220px;

  margin: 0 auto;

  background: #000000;

  overflow: hidden;
}

.internal-header-image {
  display: block;

  width: 100%;
  height: auto;
}


/* ========================================
   NAVIGATION
======================================== */

.main-nav {
  position: absolute;

  top: 28px;
  right: 60px;

  display: flex;
  align-items: center;

  gap: 34px;

  z-index: 30;
}

.main-nav a {
  display: inline-block;

  color: #FFFFFF;

  text-decoration: none;

  font-size: 18px;
  font-weight: 500;

  line-height: 1;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.7;

  transform:
    translateY(-1px);
}

.main-nav a.active {
  opacity: 0.65;
}


/* ========================================
   ABOUT
======================================== */

.about-section {
  width: 100%;

  background: #F3F0E9;
}

.about-container {
  display: grid;

  grid-template-columns:
    330px
    1fr;

  gap: 58px;

  align-items: start;

  width: 100%;
  max-width: 1220px;

  margin: 0 auto;

  padding:
    55px
    52px
    60px;
}


/* ========================================
   ABOUT IMAGE
======================================== */

.about-image {
  width: 330px;
}

.about-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


/* ========================================
   ABOUT COPY
======================================== */

.about-copy h1 {
  margin:
    0
    0
    31px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 26px;

  font-weight: 700;
}

.about-copy p {
  max-width: 720px;

  margin:
    0
    0
    27px;

  font-size: 21px;

  line-height: 1.48;

  text-align: justify;
}

.about-copy p:last-child {
  margin-bottom: 0;
}


/* ========================================
   MISSION QUOTE
======================================== */

.mission-section {
  width: 100%;

  background:
    rgba(
      0,
      0,
      0,
      0.018
    );
}

.mission-section p {
  max-width: 850px;

  margin: 0 auto;

  padding:
    42px
    35px;

  text-align: center;

  font-size: 24px;

  font-style: italic;
  font-weight: 700;

  line-height: 1.4;
}


/* ========================================
   ROME SECTION
======================================== */

.rome-section {
  width: 100%;

  background: #F3F0E9;
}

.rome-container {
  width: 100%;
  max-width: 1000px;

  margin: 0 auto;

  padding:
    52px
    55px
    55px;

  text-align: center;
}

.rome-container h2 {
  margin:
    0
    0
    28px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;

  font-weight: 700;
}

.rome-container p {
  max-width: 850px;

  margin:
    0
    auto
    22px;

  font-size: 20px;

  line-height: 1.5;
}

.rome-opening {
  font-weight: 700;
}

.rome-closing {
  margin-top: 30px !important;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 21px !important;

  font-style: italic;
  font-weight: 700;
}


/* ========================================
   FOLLOW
======================================== */

.follow-section {
  width: 100%;

  background:
    rgba(
      0,
      0,
      0,
      0.018
    );
}

.follow-container {
  width: 100%;
  max-width: 1220px;

  margin: 0 auto;

  padding:
    48px
    52px
    72px;

  text-align: center;
}

.follow-container h2 {
  margin:
    0
    0
    18px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 27px;
}

.follow-container > p {
  margin:
    0
    0
    35px;

  font-size: 18px;

  line-height: 1.5;
}


/* ========================================
   SOCIAL LINKS
======================================== */

.social-links {
  display: flex;
  flex-direction: column;

  gap: 14px;

  width: 360px;
  max-width: 100%;

  margin: 0 auto;
}

.social-button {
  display: grid;

  grid-template-columns:
    58px
    1fr;

  align-items: center;

  min-height: 54px;

  background: #B3212E;

  color: #FFFFFF;

  text-decoration: none;

  font-size: 15px;
  font-weight: 700;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.social-symbol {
  display: flex;

  align-items: center;
  justify-content: center;

  align-self: stretch;

  background: #FFFFFF;

  color: #B3212E;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;
  font-weight: 700;

  border:
    1px solid
    rgba(
      0,
      0,
      0,
      0.08
    );
}

.social-button:hover {
  opacity: 0.88;

  transform:
    translateY(-1px);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

  /* ========================================
     HEADER / NAVIGATION
  ======================================== */

  .site-header {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 100%;

    margin: 0;

    background: #000000;

    overflow: hidden;
  }

  .main-nav {
    position: static;

    order: 1;

    width: 100%;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    padding:
      0
      12px;

    margin: 0;

    background: #000000;

    z-index: 2000;
  }

  .main-nav a {
    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;
  }

  .internal-header-image {
    position: static;

    order: 2;

    display: block;

    width: 100%;
    height: auto;

    margin: 0;
  }


  /* ========================================
     ABOUT
  ======================================== */

  .about-container {
    display: block;

    padding:
      28px
      22px
      34px;
  }

  .about-image {
    width: 185px;

    margin:
      0
      auto
      24px;
  }

  .about-copy h1 {
    margin:
      0
      0
      20px;

    font-family: "Cinzel", serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.5;

    text-align: left;
  }

  .about-copy p {
    margin:
      0
      0
      18px;

    font-size: 14px;

    line-height: 1.5;

    text-align: justify;
  }

  .about-copy p:last-child {
    margin-bottom: 0;
  }


  /* ========================================
     MISSION QUOTE
  ======================================== */

  .mission-section p {
    padding:
      28px
      22px;

    font-size: 14px;
    font-weight: 700;
    font-style: italic;

    line-height: 1.5;

    text-align: center;
  }


  /* ========================================
     ROME
  ======================================== */

  .rome-container {
    padding:
      30px
      22px
      34px;
  }

  .rome-container h2 {
    margin:
      0
      0
      20px;

    font-family: "Cinzel", serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.5;
  }

  .rome-container p {
    margin:
      0
      auto
      18px;

    font-size: 14px;

    line-height: 1.5;

    text-align: justify;
  }

  .rome-opening {
    font-weight: 700;

    text-align: center !important;
  }

  .rome-closing {
    margin-top: 24px !important;

    font-family: "Cinzel", serif;

    font-size: 14px !important;
    font-weight: 700;
    font-style: italic;

    line-height: 1.5;

    text-align: center !important;
  }


  /* ========================================
     FOLLOW
  ======================================== */

  .follow-container {
    padding:
      30px
      22px
      44px;
  }

  .follow-container h2 {
    margin:
      0
      0
      16px;

    font-family: "Cinzel", serif;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.5;
  }

  .follow-container > p {
    margin:
      0
      0
      26px;

    font-size: 14px;

    line-height: 1.5;

    text-align: center;
  }


  /* ========================================
     SOCIAL LINKS
  ======================================== */

  .social-links {
    width: 100%;

    gap: 12px;
  }

  .social-button {
    min-height: 50px;

    grid-template-columns:
      52px
      1fr;

    font-size: 14px;
  }

  .social-symbol {
    font-size: 17px;
  }

}

/* ========================================
   LANGUAGE FLAG — FINAL FIX
======================================== */

.main-nav a.language-switch {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 25px !important;
  min-width: 25px !important;

  margin-left: 6px !important;
  padding: 0 !important;

  opacity: 1 !important;
}

.main-nav a.language-switch img {
  display: block !important;

  width: 25px !important;
  max-width: 25px !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  opacity: 0.58 !important;

  filter:
    saturate(70%)
    brightness(1.5);
}

.main-nav a.language-switch:hover {
  transform: none !important;
}

.main-nav a.language-switch:hover img {
  opacity: 0.95 !important;

  filter:
    saturate(85%)
    brightness(1);

  transform: scale(1.08);
}