*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}
html, body {
    width: 100%;
    overflow-x: hidden;
}
header{
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /*makes space in between*/
    padding: 33px 9%;
    background: transparent;
}
section{
    padding: 0 19%;
}
footer{
    color: lightgrey;
    padding: 50px 20px;
}






.logo{
    font-size: 30px;
    font-weight: 700;
    color: bisque;
}
.navlist{
    display: flex;
}
.navlist a{
    color: bisque;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .2s ease-in;
}
.navlist a:hover{
    border-bottom: 2px solid bisque;
}
.splash{
    height: 100%;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #412c0d 0%, #a5803b 28.53%, #866232 75.52%);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center; /* Center content horizontally */
    gap: 2rem;
    overflow-x: hidden;
}
.splash-text {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 8vw; /* Reduced for desktop centering */
    width: 100%;
    max-width: 700px; /* Limit width for desktop */
    overflow-x: hidden;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto; /* Center horizontally */
}
.splash-text h5{
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 400;
    color: bisque;
    margin-bottom: 2vw;
}
.splash-text h1{
    display: grid;
    grid-template-columns: 1fr;
    font-family: "Major Mono Display", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(32px, 8vw, 90px);
    line-height: 1.1;
    color: bisque;
    margin: 0 0 3vw;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    white-space: normal;
}
@media (max-width: 680px) {
    .splash-text {
        margin-top: 15vw;
        max-width: 100vw;
    }
    .splash-text h1 {
        font-size: 32px;
        padding-left: 0;
        padding-right: 0;
        word-break: break-word;
        text-align: center;
    }
}
.splash-text h4{
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 600;
    color: bisque;
    margin-bottom: 1vw;
}
.splash-text p{
    position: relative;
    color: bisque;
    font-size: clamp(13px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 2vw;
    margin-right: 20px;
}
.splash-text a{
    display: inline-block;
    color: rgb(56, 38, 15);
    background: #ebd18a;
    border: 1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}
.splash-text a:hover{
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}
.splash-text a.ctaa{
    background: transparent;
    border: 1px solid white;
    color: #ebd18a;
}
.splash-img img {
    position: relative;
    width: 100%;
    max-width: 500px; /* Limit image width for desktop */
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    box-sizing: border-box;
}
@media (max-width: 680px) {
    .splash-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }
}

    


/* Responsive adjustments */
@media (max-width: 990px) {
    .splash-text {
        margin-top: 120px;
    }
    .splash-text h1 {
        font-size: 50px;
    }
    .splash-text h4 {
        font-size: 16px;
    }
    .splash-img img {
        width: 400px;
    }
}

@media (max-width: 680px) {
    .splash-text {
        margin-top: 60px;
        padding: 0 10px;
    }
    .splash-text h1 {
        font-size: 32px;
    }
    .splash-text h4 {
        font-size: 14px;
    }
    .splash-text p {
        font-size: 13px;
    }
    .splash-img img {
        width: 100%;
        max-width: 300px;
    }
}
.icons{
    position: absolute;
    top: 50%;
    padding: 0 9%;
    transform: translateY(-50%);
}
.icons i{
    display: block;
    margin: 26px 0;
    font-size: 24px;
    color: rgb(182, 144, 94);
    transition: all .50s ease;
}
.icons i:hover{
    color: #dac07a;
    transform: translateY(-5px);
}
.scroll-up{
    position: fixed;
    bottom: 6%;
    right: 9%;
    z-index: 1000;

}
.scroll-up i{
    display: block;
    padding: 12px;
    font-size: 25px;
    color: rgb(94, 74, 51);
    background: #ecc57b;
    border-radius: 30px;
    transition: all .50s ease;
}

.scroll-up i:hover{
    transform: translateY(-5px);
}

.footleft{
    text-align: left;
}
.footright{
    text-align: right;
}
.footbottom{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.buttonsplitter{
    display: flex;
    gap: 10px;
}
.copyrightseperator {
    display: block;
    color: lightgrey;
    margin-top: 50px;
    margin-bottom: 50px;
}
.emailform form{
    margin-bottom: 200px;
}
.emailform{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    gap: 10px;
}




#menu-icon{
    color: bisque;
    font-size: 35px;
    z-index: 10001;
    cursor: grab;
    display: none;
}

@media (max-width: 1535px){
    header{
        padding: 15px 3%;
        transition: .2s;
    }
    .icons{
        padding: 0 3%;
        transition: .2s;
    }
    .scroll-down{
        right: 3%;
        transition: .2s;
    }
}
@media (max-width: 1460px){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}
@media (max-width: 1340px){
    .splash-img img{
        width: 100%;
        height: auto;
    }
    .splash-text h1{
        font-size: 75px;
        margin: 0 0 30px;
    }
    .splash-text h5{
        margin-bottom: 25px;
    }
}
@media (max-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .splash-text{
        padding-top: 115px;
    }
    .splash-img{
        text-align: center;
    }
    .splash-img img{
        width: 560px;
        height: auto;
    }
    .splash{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    .icons{
        display: none;
    }
    .scroll-down{
        display: none;
    }
}
@media (max-width: 990px){
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 250px;
        height: 90vh;
        background: #dfbe78;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 50px 20px;
        transition: all .55s ease;
    }
    .navlist a{
        display: block;
        margin: 10px 0;
        margin-left: 0;
    }
    .navlist.open{
        right: 0;
    }
}
@media (max-width: 680px){
    .splash-img img{
        width: 100%;
        height: auto;
    }
}

/*FOOTER ANIM TST*/
.footeranim {
    background: linear-gradient(308deg, #251f12, #7c6b34, #292512, #967a51);
    background-size: 1400% 1400%;

    -webkit-animation: footer 14s ease infinite;
    -moz-animation: footer 14s ease infinite;
    -o-animation: footer 14s ease infinite;
    animation: footer 14s ease infinite;
}

@-webkit-keyframes footer {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
@-moz-keyframes footer {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
@-o-keyframes footer {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
@keyframes footer {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}

/*email form css*/
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
  background-color: #4d3e1e;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.message {
  color: #4d3e1e;
  font-size: 14px;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid #4d3e1e;
  border-radius: 5px;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: #4d3e1e;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,.form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: green;
}

.input01 {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid #4d3e1e;
  border-radius: 5px;
}

.form label .input01 + span {
  position: absolute;
  left: 10px;
  top: 100px;
  color: #4d3e1e;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input01:placeholder-shown + span {
  top: 40px;
  font-size: 0.9em;
}

.form label .input01:focus + span,.form label .input01:valid + span {
  top: 2px;
  font-size: 0.7em;
  font-weight: 600;
}

.form label .input01:valid + span {
  color: green;
}

.fancy {
  background-color: rgb(241, 219, 143);
  border: 2px solid #4d3e1e;
  border-radius: 0px;
  box-sizing: border-box;
  color: #4d3e1e;
  cursor: pointer;
  display: inline-block;
  font-weight: 390;
  letter-spacing: 2px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 8px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
  font-size: 13px;
}

.fancy::before {
  content: " ";
  width: 1.7rem;
  height: 2px;
  background: #33230d;
  top: 50%;
  left: 1.5em;
  position: absolute;
  transform: translateY(-50%);
  transform: translateX(230%);
  transform-origin: center;
  transition: background 0.3s linear, width 0.3s linear;
}

.fancy .text {
  font-size: 1.125em;
  line-height: 1.33333em;
  padding-left: 2em;
  display: block;
  text-align: left;
  transition: all 0.3s ease-in-out;
  text-transform: lowercase;
  text-decoration: none;
  color: #4d3e1e;
  transform: translateX(30%);
}

.fancy .top-key {
  height: 2px;
  width: 1.5625rem;
  top: -2px;
  left: 0.625rem;
  position: absolute;
  background: #4d3e1e;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
  height: 2px;
  width: 1.5625rem;
  right: 1.875rem;
  bottom: -2px;
  position: absolute;
  background: #4d3e1e;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
  height: 2px;
  width: 0.625rem;
  right: 0.625rem;
  bottom: -2px;
  position: absolute;
  background: #4d3e1e;
  transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
  color: #4d3e1e;
  background: #f3cd94;
}

.fancy:hover::before {
  width: 1.5rem;
  background: #4d3e1e;
}

.fancy:hover .text {
  color: white;
  padding-left: 1.5em;
}

.fancy:hover .top-key {
  left: -2px;
  width: 0px;
}

.fancy:hover .bottom-key-1,
 .fancy:hover .bottom-key-2 {
  right: 0;
  width: 0;
}

.formStatus {
  margin-top: 10px;
  font-size: 14px;
  color: rgb(250, 219, 163);
}