@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT-serif&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }  

  /* 1. Reset margins so 100vh doesn't cause scrollbars */
body {
  margin: 0;
  padding: 0;
  
  /* 2. Use Flexbox to organize layout vertically */
  display: flex;
  flex-direction: column;
  
  /* 3. Force body to be at least the height of the viewport */
  min-height: 100vh;
}

/* 4. Make the main content grow to push the footer down */
main {
  flex: 1;
}

  :root {
    /* COLORS */
    --BGCOLOR: #0C0C0C;
    --TEXT-COLOR: white;
    --LIGHT-TEXT-COLOR: #F6F3EC;
    --TEXT-FONT: "Marcellus";
    --HEADER-BGCOLOR: #0C0C0C;
    --HEADER-COLOR: white;
    --HEADER-FONT: "Marcellus" sans-serif;
  }

html {
    background-color: var(--BGCOLOR);
    color: var(--TEXT-COLOR);
    overflow-x: hidden;
    font-family: var(--TEXT-FONT);
    height: 100%;
}

.coming {
  display: block;
  align-items: center;
  justify-content: center;
}

header {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    gap: 2rem;
    font-family: var(--HEADER-FONT); 
}

.header__h1 {
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header__logo img {
    max-height: 220px;    /* Adjust as needed */
    max-width: 100%;    /* Adjust as needed */
    height: auto;
    width: auto;
    display: block;
    
  }

a {
    text-decoration: none;
    color: var(--TEXT-COLOR);
    font-size: 16px;
}

h2 {
    display: flex;
    font-size: 4rem;
    font-weight: normal;
    justify-content: center;
}

h3 {
  font-weight: normal;
}

.header__ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;

}

.header__ul a {
    text-decoration: none;
    color: var(--LIGHT-TEXT-COLOR);
    font-size: 1rem;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
  }
  
  .header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  a:hover {
    background: gray;
  } 
  
.header__nav a {
    text-decoration: none;
    color: var(--LIGHT-TEXT-COLOR);
    font-size: 1.5rem;
    transition: color 0.2s;
  }

.header__nav__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 10px;
    margin-left: auto;
}

.header__nav__right a{
    display: flex;
    text-decoration: none;
    color: var(--LIGHT-TEXT-COLOR);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    justify-content: flex-end;
  }

.mobile-nav {
  display: none;
}

.menu-button {
  display: none;
}


nav li {
    margin-right: 20px; 
    white-space: nowrap;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }


  .main__slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    height: 80vh;
    border: #F6F3EC solid 2px ;
  }

  .desk__photo {
    position: relative;
    display: flex; /* or block, as needed */
    height: 80vh;
    align-items: center;
    justify-content: center;
  }

  .desk__photo img {
    display: block;
    width: auto; /* or your preferred size */
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    align-items: center;
    justify-content: center;
  }

  .desk__photo figcaption {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 90vh;
    max-width: 100%;
    transform: translate(-50%, -50%);
    color: var(--LIGHT-TEXT-COLOR); /* or your preferred color */
    padding: 0.5em 1em;
    text-align: center;
    font-size: 2em;
    z-index: 5;
    pointer-events: auto; /* optional: lets clicks pass through */
  }

  .dropdown {
    position: relative;
    font-family: sans-serif;
    border: none;
  }
  
  .dropdown-toggle {
    background: none;
    border: none;
    color: var(--TEXT-COLOR);
    font-family: var(--TEXT-FONT);
    font-size: 1.5rem;
    padding: 0em 0em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  
  .dropdown-toggle .arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.25em;
    background: transparent;
    color: var(--TEXT-COLOR);
    list-style: none;
    padding: 0;
    width: max-content;
    display: none;
    z-index: 1000;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.25em;
    text-decoration: none;
    color: var(--TEXT-COLOR);
    font-family: var(--TEXT-FONT);
    white-space: nowrap;
  }
  
  .dropdown-menu li a:hover {
    color: var(--TEXT-COLOR);
  }
  
  /* Optional: rotate arrow when open */
  .dropdown.open .dropdown-toggle .arrow {
    transform: rotate(180deg);
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }

  footer {
  background-color: black;
  width: 100%;
  padding: 1rem 0; /* Adds some nice vertical spacing */
  
  /* Use Flexbox to center the content */
  display: flex;
  justify-content: center; /* This centers the text horizontally */
  align-items: center;     /* This centers it vertically */
}
  

    @media screen and (max-width: 768px) {
        html {
            overflow-x: hidden !important;
        }
        header {
          position: relative;
          display: flex;
          align-items: center; /* Vertically center children */
          justify-content: space-between; /* Logo left, button right */
          height: auto; /* Or set a fixed height if you prefer */
          padding: 1rem;
          background: var(--BGCOLOR);
        }

        .header__logo {
          flex-shrink: 0;
          display: flex;
          align-items: center;
          max-height: 60px;
        }

        .header__logo img {
          max-width: 200px;
          max-height: 100px;
        }

        .header__nav, .header__nav__right {
            display: none !important;
        }

        .desk__photo img {
            display: flex;
            width: auto;
            max-height: 80vh;
            height: auto;
            align-items: center;
            justify-content: center;
          }
        
        .desk__photo {
            position: relative;
            display: flex; /* or block, as needed */
            height: 80vh;
            align-items: center;
            justify-content: center;
        }
        .desk__photo figcaption {
            position: absolute;
            top: 80%;
            left: 50%;
            width: 150vh;
            transform: translate(-50%, -50%);
            color: var(--LIGHT-TEXT-COLOR); /* or your preferred color */
            padding: 0.5em 1em;
            text-align: center;
            font-size: 2em;
            pointer-events: auto; /* optional: lets clicks pass through */
          }

          .header__logo img,
          .desk__photo img {
              max-width: 100%;
              height: auto;
              display: block;
          }

      }



  

