:root{
    --red: rgba(207, 39, 11, 1);
    --backdrop-red: rgba(207, 39, 11, 0.1);
    --darkred: #740000;
    --lightred: #c90000;
    --verylightred: #f3e0ba;
    --black: rgb(5, 7, 10);
    --blackAlpha: rgba(5, 7, 10, 0.5);
    --lightgrey: #6c7a75;
    --greyblue: #4d646a;
    --white: #f3eee3;

    --hamburger-width: max(30px, calc(5vh - 20px));
    --hamburger-height: calc(var(--hamburger-total-height)/6);
    --hamburger-gap: calc(var(--hamburger-height));
    --hamburger-total-height: var(--hamburger-width);
    --nav-anim-timing: .5s ease-in-out;
    --font-family: "Lato", sans-serif;

    --mainLogo1K: url(Assets/Logo/Main-Logo-1K.png);
    --mainLogo1KdropShadow: url(Assets/Logo/Main-Logo-1K-DropShadow.png);
}

/* --- RESET --- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
  }

  html {
    scroll-behavior: smooth;
    overflow: hidden;
  }

  body {
    width: 100vw;
    height: 100vh;
    font-family: "Lato", sans-serif;
    color: #222;
    overflow: hidden;

  }

  .wrapper{
    position: fixed;
    width: 100vw;
    height: 100vh;
    perspective: 100px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  a{
    box-sizing: content-box;
    z-index: 1000;
  }

  a :hover{
      color: var(--red);
  }

  .btn {
    text-transform: uppercase;
    color: var(--white);
    margin: 10px auto;
    width: 60%;
    padding: 10px 0;
    background: rgba(172, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: #110e0860 0px 2px 3px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
    transition: background .5s;
  }

  .btn:hover {
      background: rgba(172, 0, 0, 0.671);
  }


  .scrolling-backdrop{
      width:100%;
      height: 100%;
      position: absolute;
      overflow: hidden;
      background: linear-gradient(0deg, rgb(1 0 0) 8%, rgb(20 3 0) 44%, rgb(62 25 0) 90%);
  }

  .scrolling-backdrop::before{
      content: "";      
      background-color: #0e0e21;
      background: url(Assets/Images/TilingKey.jpg) repeat;
      background-size: 3.5%, cover;
      display: block;
      width: max(200cqh,200cqw);
      height: max(200cqh,200cqw);
      transform: scale(2) rotate(45deg);
      background-blend-mode: overlay;
      animation: keyPatternScroll 10s linear infinite;   
      mix-blend-mode: overlay;
  }

  @keyframes keyPatternScroll{
      0%{transform: scale(2) rotate(45deg) translate(0,0)}
      100%{transform: scale(2) rotate(45deg) translate(3.5%,0%)}
  }

  .landing-logo{
      background-image: var(--mainLogo1KdropShadow);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      width: clamp(40vw, 40vh, 60vw);
      height: 40vh;
  }

  .content-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    align-content: center;
    justify-content: center;
  }

  #contact{
    min-height: 500px;
    z-index: 500;
    background-size: 10% !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    gap: 10px;
    justify-content: space-around;
  }

  #contact::before{
    filter: saturate(0) brightness(0.5) !important;
  }

  .contact-container{
    z-index: 1000;
    width: min(90%, 600px);
    height: max-content;
    min-height: 450px;
  } 

  .contact-container h1{
    line-height: clamp(.6rem, 3.6rem, .1rem + 11.5vw);
    color: var(--white);
    font-size: clamp(.5rem, 3.5rem, .1rem + 11vw);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center !important;
  }

  .contact-container label{
    font-size: calc(.2rem+3vw) ;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 1000;
    left: 20px;
    margin: 5px 0;
    position: relative;
  }

  #form > textarea{
    height: clamp(300px, 25vh, 25vh) !important;
  }
  /* Style inputs with type="text", select elements and textareas */
  input[type=text], input[type=email], select, textarea{
    width: 100%;
    height: clamp(30px, 5vh, 50px);
    background-color: var(--white);
    color: var(--black);
    border: 1px solid #ccc;
    border-radius: 20px;

    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 5px;
    resize: vertical;
    font-size: clamp(.3rem, 1.2rem, .1rem + 3vw);
    letter-spacing: normal;
    text-decoration: none;
    font-weight: 1000;
    text-transform: uppercase;
    min-height: 30px;
    padding-block: 5px;
    line-height: 2rem;
    padding-inline: 10px;
    overflow-clip-margin: 0px !important;
    overflow: clip !important;
    
  }

  input[type=text]::placeholder, input[type=email]::placeholder, select::placeholder, textarea::placeholder {
    color: rgba(0, 0, 0, 0.3)
  }
  textarea{
    height: clamp(40px, 120px, 15vh);
    
  }

  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: var(--black);
    color: var(--white);
    font-size: clamp(.3rem, 1.2rem, .1rem + 3vw);
    font-weight: 1000;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: .3s ease;
    width: 100%;
    margin-top: 20px;
  }
  

  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    color: var(--red);
    background-color: color-mix(in srgb, var(--black), black 80%);
  }

  #submit-result{
    display: block;
    display: none;
    position: relative;
    top: calc(-1 * (clamp(.5rem, 2rem, .1rem + 4vw) + 22px));
    /* height: clamp(43px, 5vh, 5vh); */
    /* width: 100%; */
    background-color: var(--black);
    color: var(--white);
    font-size: clamp(.5rem, 2rem, .1rem + 4.4vw);
    font-weight: 1000;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: .3s ease;
    width: calc(100% + 4px);
    left: -2px;
    box-shadow: 0px 4px 3px #16161673;
  }

  .submit-success{
    background-color: #49d45b !important;
    display: block !important;
  }

  .submit-warning{
    background-color: #e79110 !important;
    display: block !important;
  }

  .submit-error{
    background-color: #d33d33 !important;
    display: block !important;
  }
  
  .dividing-line-h{
    height: 3px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    background-color: var(--white);
  }

  /* Add a background color and some padding around the form */
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }


/* Landscape phones and down */
@media only screen and (max-width: 480px) {

  .mobile-hidden{
    display: none !important;
  }

    /* --- NAVBAR --- */

  nav:not(.mobile-nav) {
    position: fixed;
    left: 0;
    width: 100%;
    height: 10vh;
    min-height: 40px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.8);
    transform: translateZ(1px);
    z-index: 1000;
  }

  .sidebar{
    translate: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: left;
    top:10vh;
    left: 15vw;
    width: 85vw;
    min-height: 90vh;
    transform: translateZ(1px);
    z-index: 900;
    background-color: var(--black);
    opacity: 98%;
    transition: var(--nav-anim-timing);
  }  

  .sidebar > div{
    display: flex;   
    align-items: center;
    transition: 0.3s;
    height: 5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    border-bottom: 2px solid var(--white);
    margin-bottom: -2px;
  }

  .sidebar > div > a {
    color: var(--white);
    width: 100%;
    margin: auto auto auto 20px;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    font-size: calc(1rem + 1vw);
    font-weight: 1000;
  }

  .sidebar> div:hover{
    background-color: var(--red);
    box-shadow: 3px 0px 2px var(--red);
    border-bottom: 2px solid var(--red);
    z-index: 1006;
  }

  .sidebar > div > a:hover{
    color: var(--black);
    margin-left: 40px;
  }

  .nav-links-dropdown-button{
    --x-width: calc(var(--hamburger-total-height) * 1.15);
    transform-origin: center center;
    translate: translateX(-50%);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    position: absolute;
    right: 20px;
    cursor: pointer;
    width: var(--hamburger-total-height);
  }

  .nav-links-dropdown-button::before,
  .nav-links-dropdown-button::after,
  .nav-links-dropdown-button input
  {
    display: block;
    content: "";    
    background-color: var(--white);
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    border-radius: 1000px;
    transform-origin: right center;
    opacity: 1;
    transition: opacity 1s ease-in-out, width .4s, rotate .3s, transform 1s ease;
  }

  .nav-links-dropdown-button input{
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
  }

  .nav-links-dropdown-button input:checked{
    opacity: 0;
    width: 0;
  }

  .nav-links-dropdown-button:has(input:checked){
    width: var(--hamburger-total-height);
  }

  .nav-links-dropdown-button:has(input:checked)::before{
    transform: translate(-30%, -50%) rotate(-45deg);
    width: var(--x-width);
    transition: opacity 1s ease-in-out, width .4s, rotate .3s, transform 1s ease;
    
  }

  .nav-links-dropdown-button:has(input:checked)::after{
    transform: translate(-30%, 50%) rotate(45deg);
    width: var(--x-width);
    transition: opacity 1s ease-in-out, width .4s, rotate .3s, transform 1s ease;
    
  }

  .nav-links-dropdown-button:has(input:checked) + .sidebar{
    translate: 0;
  }

  .nav-links-dropdown-button:has(input:checked) + .nav-links-dropdown-button{
    width: var(--hamburger-total-height);
  }

  .wrapper{
    top: clamp(30px, 20vh, 10vh);
    height: calc(100vh - clamp(30px, 20vh, 10vh));
    perspective: 100px;
    transform-style: preserve-3d;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .nav-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;

  }

  .logo {    
    min-height: 30px;
    min-width: 30px;
    max-height: 450px;
    top: 5px;
    left: 5px;
    position: absolute; 
    
    width: calc(10vh - 10px);
    height: calc(10vh - 10px);
    background-image: var(--mainLogo1KdropShadow);
    background-size: contain;
    background-position: center;
    background-origin: content-box;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items:baseline;
    justify-content: space-around;
  }

  .logo a {
      height:100%;
      width: 100%;
      cursor: pointer;
      z-index: 1050;
  }

  .nav-links {
    display: flex;
    gap: 2vw;
    margin-left: 3vh; /* Space for logo */
  }
 
  .nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: .5em;
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  .nav-links a:hover{
      color: var(--red);
  }


  /* --- SECTIONS --- */

  section{
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
  }
  .section-center{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform-style: preserve-3d;
  }
  .section-left{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
      transform-style: preserve-3d;
  }


  /* --- CONTENT HOLDER --- */

  .content-holder {
    width: 90%;
    height: max-content;
    margin: 0 auto;
  }

  /* --- LANDING SECTION & PARALLAX --- */
  #landing{
      position: relative;
      transform-style: preserve-3d;
  }

  #landing-content {
      font-size: .5em;
      text-align: center;
      transform-style: preserve-3d;
      position: relative;
      margin: 0 auto;
      align-items: center;
      color: var(--white);
      height: 100%;
  }

 #landing p{
  max-width: 95%;
  margin: 0 auto;
  font-size: clamp(.6rem, 2rem, calc(.1rem + 2.5vw));
 }

  #landing h1 {
    line-height: 1em;
    color: var(--white);
    font-size: clamp(.5rem, 2.8rem, .1rem + 8vw);
    margin-bottom: 0px;
  }

  #welcome{
    position: relative;
    font-size: clamp(.6rem, 2rem, calc(.1rem + 3vw)) !important;
    text-transform: uppercase;
    letter-spacing: .2em;
  }

  #landing-text {
    font-size: 2em;
  }
  #landing-text a{
    text-decoration: none;
    font-style: bold;
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  #tag_line{
      letter-spacing: .1em;
      font-size: 1.5em;
      font-weight: 100;
      margin-bottom: max(10px, 4vh) !important;
  }

  .upper{
      text-transform: uppercase;
  }

  .cap{
      text-transform: capitalize;
  }

  #to-top-button{
    position: absolute;
    bottom: 50px;
    left:20px;
  }

  #to-section-button{

  }





  /* --- DROPDOWN MENU --- */
  .dropdown {
    position: relative;
  }

  .dropbtn {
    display: flex;
    height: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: 1.5em;
    color: #e7dfc4;
    font-weight: 1000;
    transition: color 0.3s;
  }

  .dropbtn:hover {
    color: #007BFF;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -20px;
    background: var(--white);
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 15px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s;
  }

  .dropdown-content a:hover {
    background: var(--black);
    color: var(--white);
  }

  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    padding-top: 10px;
  }
}

  /* ---MOBILE DROPDOWN MENU --- */

  .dropdown-mobile-nav {
    position: relative;
  }

  .dropbtn-mobile-nav {
    display: flex;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    transition: 0.3s ease-in-out;
    
  }

  .dropbtn-mobile-nav:hover {
    color: #007BFF;
  }

  .dropdown-content-mobile-nav {
    display: none;
    position: relative;
    text-align: left;
    background: inherit;
    min-width: 120px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    z-index: 999;
    transition: .2s ease-in-out;
    
  }

  .dropdown-content-mobile-nav a {
    display: block;
    padding: 15px 15px;
    color: var(--black);
    text-decoration: none;
    transition: 0.2s;
  }

  .dropdown-content-mobile-nav a:hover {
    background: var(--black);
    color: var(--white);
    padding-left: 20px;
  }

  .dropdown-mobile-nav:hover{
    height: max-content !important;
  }

  /* Show dropdown on hover */
  .dropdown-mobile-nav:hover .dropdown-content-mobile-nav {
    display: inline;
    height: max-content !important;
    top:70%;
  }

/* Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) {

  .mobile-show{
    display: none !important;
  }

    /* --- NAVBAR --- */
  nav {
    position: fixed;
    left: 0;
    width: 100%;
    height: 4vh;
    min-height: 40px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: stretch;
    box-shadow: 0 2px 15px rgba(0,0,0,0.8);
    transform: translateZ(1px);
    z-index: 1000;
  }

  .wrapper{
    top: clamp(40px, 5vh, 3vh);
    height: calc(100vh - clamp(40px, 3vh, 3vh));
  }

  .nav-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
  }

  .logo {
    position: absolute;
    margin-right: 3vw;
    top: 10px; /* Overlaps bottom edge */
    left: 10px;
    min-height: 50px;
    min-width: 50px;
    max-height: 450px;
    width: 4vw;
    height: 4vw;
    background-image: url(Assets/Images/Flycheese-Logo-Remake.png);
    background-size: contain;
    background-position: center;
    background-origin: content-box;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items:baseline;
    justify-content: space-around;
  }

  .logo a {
      height:100%;
      width: 100%;
      cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 1.5vw;
    margin-left: 0; /* Space for logo */
  }

  .nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: calc(.1rem + 1.5vw);
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  .nav-links a:hover{
      color: var(--red);
  }



  /* --- SECTIONS --- */

  section{
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
  }
  .section-center{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform-style: preserve-3d;
  }
  .section-left{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
      transform-style: preserve-3d;
  }

  /* --- LANDING SECTION & PARALLAX --- */
  #landing{
      position: relative;
      transform-style: preserve-3d;
  }

  #landing-content {
      font-size: .5rem;
      text-align: center;
      transform-style: preserve-3d;
      margin: 0 auto;
      align-items: center;
      color: var(--white);
      width: 90%;
      height: 100%;
  }

 #landing p{
  font-size: clamp(.8rem, 2rem, calc(.1rem + 1vw))
 }

  #landing h1 {
    line-height: calc(.1rem + 10vw);
    color: var(--white);
    font-size: calc(.1rem + 9vw);
    margin-bottom: 0px;
  }

  #welcome{
    position: relative;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: .2em;
  }

  #landing-text {
    font-size: 2em;
  }
  #landing-text a{
    text-decoration: none;
    font-style: bold;
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  #tag_line{
      letter-spacing: .1em;
      font-size: 1.5em;
      font-weight: 100;
      margin-bottom: 20px;
  }


  .upper{
      text-transform: uppercase;
  }

  .cap{
      text-transform: capitalize;
  }

  #to-top-button{
    width: 100px;
    position: absolute;
    bottom: 30px;
    left:10px;
  }

  /* --- DROPDOWN MENU --- */
  .dropdown {
    position: relative;
  }

  .dropbtn {
    display: flex;
    height: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: 1.5em;
    color: #e7dfc4;
    font-weight: 1000;
    transition: color 0.3s;
  }

  .dropbtn:hover {
    color: #007BFF;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -20px;
    background: var(--white);
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 15px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s;
  }

  .dropdown-content a:hover {
    background: var(--black);
    color: var(--white);
  }

  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    padding-top: 10px;
  }
}






/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 1199px) {

  .mobile-show{
    display: none !important;
  }

  /* --- NAVBAR --- */
  nav {
    position: fixed;
    left: 0;
    width: 100%;
    height: 8vh;
    min-height: 40px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.8);
    transform: translateZ(1px);
    z-index: 1000;
  }

  .wrapper{
    top: max(8vh, 40px);
    height: calc(100vh - min(8vh,40px));
  }
  .nav-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
  }

  .logo {
    position: absolute;
    margin-right: 3vw;
    top: 10px; /* Overlaps bottom edge */
    left: 10px;
    min-height: 90px;
    min-width: 90px;
    max-height: 450px;
    width: 10vw;
    height: 10vw;
    background-image: url(Assets/Images/Flycheese-Logo-Remake.png);
    background-size: contain;
    background-position: center;
    background-origin: content-box;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items:baseline;
    justify-content: space-around;
  }

  .logo a {
      height:100%;
      width: 100%;
      cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 2vw;
    margin-left: 0; /* Space for logo */
  }

  .nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: calc(1.5vw + 0.1rem);
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  .nav-links a:hover{
      color: var(--red);
  }



  /* --- SECTIONS --- */

  section{
      position: relative;
      min-height: 95vh;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
  }
  .section-center{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform-style: preserve-3d;
  }
  .section-left{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
      transform-style: preserve-3d;
  }

  /* --- CONTENT HOLDER --- */

  .content-holder {
    width: 95%;
    height: 100%;
    margin: 0 auto;
  }

  /* --- LANDING SECTION & PARALLAX --- */
  #landing{

      position: relative;
      text-align: justify;
      transform-style: preserve-3d;
  }

  #landing-content{
      font-size: 1rem;
      transform-style: preserve-3d;
      margin: 0 auto;
      width: 80%;
      height: 100%;
  }

  #landing h1 {
    line-height: calc(.1rem + 3.5w);
    color: var(--white);
    text-align: center;
    font-size: calc(.1rem + 4.3vw);
    margin-bottom: 0px;
  }

  #landing p {
    text-align: justify;
    color: var(--white);
    font-size: clamp(.5rem, 1.1rem, calc(.1rem + 1.5vw));
  }

  #welcome{
    font-size: .3em;
    text-transform: uppercase;
    text-align: center !important;
    letter-spacing: .2em;
  }
  #landing-text a{
    text-decoration: none;
    font-style: bold;
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  #tag_line{
      letter-spacing: .3rem;
      font-size: calc(.3vw + .5rem) !important ; 
      text-align: center !important;
      font-weight: 100;
      margin-bottom: 15px;
  }

  .upper{
      text-transform: uppercase;
  }

  .cap{
      text-transform: capitalize;
  }

  #to-top-button{
    position: absolute;
    bottom: 50px;
    left:20px;
  }

  /* --- DROPDOWN MENU --- */
  .dropdown {
    position: relative;
  }

  .dropbtn {
    display: flex;
    height: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: 1.5em;
    color: #e7dfc4;
    font-weight: 1000;
    transition: color 0.3s;
  }

  .dropbtn:hover {
    color: #007BFF;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -20px;
    background: var(--white);
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 15px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s;
  }

  .dropdown-content a:hover {
    background: var(--black);
    color: var(--white);
  }

  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    padding-top: 10px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {

  .mobile-show{
    display: none !important;
  }

  /* --- NAVBAR --- */
  nav {
    position: fixed;
    left: 0;
    width: 100%;
    height: 3vh;
    min-height: 80px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.8);
    transform: translateZ(1px);
    z-index: 1000;
  }

  .wrapper{
    top: clamp(80px, 200px, 3vh);
    height: calc(100% - clamp(80px, 200px, 3vh));
  }
  .nav-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
  }

  .logo {
    position: absolute;
    margin-right: 3vw;
    top: 20px; /* Overlaps bottom edge */
    left: 12.5px;
    width: 10vw;
    height: 10vw;
    min-height: 90px;
    min-width: 90px;
    max-height: 150px;
    max-width: 150px;
    background-image: url(Assets/Images/Flycheese-Logo-Remake.png);
    background-size: contain;
    background-position: center;
    background-origin: content-box;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items:baseline;
    justify-content: space-around;
  }

  .logo a {
      height:100%;
      width: 100%;
      cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 2vw;
    margin-left: 0; /* Space for logo */
  }

  .nav-links a {
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: calc(.5vw + 1rem);
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  .nav-links a:hover{
      color: var(--red);
  }



  /* --- SECTIONS --- */

  section{
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
  }

  .section-center{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: justify;
      transform-style: preserve-3d;
  }
  .section-left{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
      transform-style: preserve-3d;
  }

  /* --- CONTENT HOLDER --- */

  .content-holder {
    width: 80%;
    height: max-content;

  }

  /* --- LANDING SECTION & PARALLAX --- */
  #landing{

      position: relative;
      text-align: justify;
      transform-style: preserve-3d;
  }

  #landing-content{
      font-size: 1rem;
      transform-style: preserve-3d;
      margin: 0 auto;
      width: 50%;
      height: 100%;
  }

  #landing h1 {
    line-height: calc(.1rem + 3.8vw);
    color: var(--white);
    text-align: center;
    font-size: calc(.1rem + 4vw);
    margin-bottom: 0px;
  }

  #landing p {
    text-align: justify;
    color: var(--white);
    font-size: clamp(.6rem, 1.5rem, calc(.1rem + 1vw));
  }

  #welcome{
    font-size: .3em;
    text-transform: uppercase;
    text-align: center !important;
    letter-spacing: .2em;
  }
  #landing-text a{
    text-decoration: none;
    font-style: bold;
    color: var(--white);
    font-weight: 1000;
    transition: color 0.3s;
  }

  #tag_line{
      letter-spacing: .5rem;
      font-size: calc(1.1vw + .1rem) !important; 
      text-align: center !important;
      font-weight: 100;
      margin-bottom: 25px;
  }

  .upper{
      text-transform: uppercase;
  }

  .cap{
      text-transform: capitalize;
  }

  #to-top-button{
    position: absolute;
    bottom: 50px;
    left:20px;
  }

  /* --- DROPDOWN MENU --- */
  .dropdown {
    position: relative;
  }

  .dropbtn {
    display: flex;
    height: 100%;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
    font-style: bold;
    font-size: 1.5em;
    color: #e7dfc4;
    font-weight: 1000;
    transition: color 0.3s;
  }

  .dropbtn:hover {
    color: #007BFF;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    left: -20px;
    background: var(--white);
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown-content a {
    display: block;
    padding: 15px 15px;
    color: var(--black);
    text-decoration: none;
    transition: background 0.2s;
  }

  .dropdown-content a:hover {
    background: var(--black);
    color: var(--white);
  }

  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
    padding-top: 10px;
  }
}


