/* Nukes all borders, allowing all the styling to come from the css*/
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 0;
    width: 100vw;
  

  	-webkit-user-select: none; /* Safari */
  	-ms-user-select: none;     /* IE 10+ and Edge */
  	user-select: none;         /* Modern Browsers */

}

img{
  pointer-events: none;
}

footer {
    border-top: 4px solid #978035;

}

footer a  {
    text-decoration: none;
    color: #978035;
    font-weight: 600;
    font-family: "canela";
}

footer .footer-content {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #FFF;
    box-sizing: border-box;
    letter-spacing: 1px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 4px solid #695848;
}


header .nav-left, header .nav-right {
    display: none;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

main {
    flex: 911;
} 

.menu {
    top: 0;
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    width: fit-content;
    position: relative;
    z-index: 10;
}


.menu  li .nav-button {
    background-color: #695848;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;

    text-align: center;
    margin-top: 7px;
    margin-bottom: 7px;

}

.menu ul {
    background: #e6e0d9;
    list-style-type: none;
    position: absolute;
    left: 50%;                /* Center horizontally */
    transform: translateX(-50%);/* Shift back by half width */
    min-width: 180px;
    width: max-content;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border-radius: 6px;
    box-shadow: 0 4px 12px #0001;
    z-index: 9999;
}

.menu li:hover ul,
.menu li:focus-within ul {
    opacity: 1;
    pointer-events: auto;
}

.menu ul a {
    text-decoration: none;
    color: #695848;
    display: block;
    padding: 10px;
    font-weight: 800;
    font-family: "canela";
    font-size: 20px;
    text-align: center; 
}


/* Smallest iPad width (iPad mini) 
@media (min-width: 768px) {
    body {
        width: 100%;
    }
}
*/
/*Desktop (and for some reason also some ipads) *fucking apple */
@media (min-width: 1060px) {
    body {
        width: 100%;
    }
    
  	header {
    	text-align: center;
  	}
  
    header .img-home{
        scale: 100;
    }
    header .nav-left, header .nav-right {
        display: flex;
        justify-content: space-between;


    }

    header a {
        text-decoration: none;
        color: #000000 ;
        letter-spacing: 2px; 
        font-weight: 1;
        font-size: 20px;
        font-family: 'canela';
        text-transform: uppercase;
    }


    header a:hover {
    color: #978035;
}

    /* active = the link that is currently being clicked on */
    header a:active {
        color: #000;
    }





    /* Spaces out the links in the header */
    header .nav-left a {
        margin-right: 10px;
    }

    header .nav-right a {
        margin-left: 10px;
    }


    /* These are the bullet points in between the characters */
    header .spanleft {
      	align-self: center;
        margin-right: 20px;
        font-size: 15px;
        color: #887944;
    }

    .spanright {
      	align-self: center;
        margin-left: 20px;
        font-size: 15px;
        color: #887944;
    }
    
    header .img-home{
        padding-top: 30px;
        padding-bottom: 25px;
        scale: 0.8;
    }

    .menu {
        display: none;
    }

    footer .footer-content{
        flex-direction: row;
        width: 90%;
        justify-self: center;
        justify-content: space-between;

    }

    footer .footer-content .Copywrite-tag {
        font-size: 20px;
    }

    footer .footer-content .TandC {

        font-size: 20px;
    }


}