/*desktop stylesheet for toze.com*/

        body {
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            /*background: url('assets/processed1.gif') no-repeat;*/
            background: url('assets/sunset_graded.gif') no-repeat center center fixed;
            background-size: cover;
        }
        

        * {
            font-family: "Helvetica Neue", sans-serif;
            color: white;
            font-size: 60px;
            line-height: 0.7;
        }
        
        a { 
            display: inline-block;
            transition: transform 0.1s ease; /* Add a smooth transition effect */
            text-decoration:none;
        }
        
        a:hover { 
              transform: scale(1.1); /* Increases size by 10% on hover */
        }
        
        canvas {
            pointer-events: none;
        }
        .container {
            display: flex;
            width: 1920px;
        }
        .column {
            display: flex;
            position: relative;
        }
        .col1 { width: 32.71%; }
        .col2 { width: 18.13%; }
        .col3 { width: 26.77%; }
        .col4 { width: 22.40%; }
        
        .box {
            width: 100%;
            height: 480px;
            position: absolute;
        }
        
        .textbox {
            width: 100%; 
            height: 100%;
            position: absolute;
        }
        .col1 .box { top: 450px;}
        .col1 .box .textbox {top: 0px; left: 12%;}

        .col2 .box { top: 150px;}
        .col2 .box .textbox {top: 0px; left: 5px;}
        
        .col3 .box { top: 23px;}
        .col3 .box .textbox {top: 0px; left: 0px; font-size: 140px;}
        
        .col4 .box { top: 270px;}
        .col4 .box .textbox {top: 0px; left: 0px;}
        
        .bottom-menu {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            color: white;
            text-align: center;
            padding: 10px 0;
            background-color: rgb(0,0,0,0.2);
        }
        
        .somo-box {
            width: 400px;
            height: 80px;
            position: absolute;
            right: 80px;
            background-color: rgb(0,0,0,0.2);
            display: flex;
            justify-content: space-around;
        }
        
        .somo {
            height: 80px;
            
        }

/* IDS */

#toze_link{
    font-size: 140px;
}


#chillmode_switch{
    position:fixed;
    right: 10px;
}

#switch{
    height: 100px;
    opacity: 0.2;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip .tooltiptext {
  visibility: hidden;
  padding: 0.25em 0.5em;
  background-color: rgb(228, 205, 158);
  color: black;
  text-align: center;
    font-size: 18px;
  white-space: nowrap;
    outline: 2px solid black;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  transition-property: visibility;
  transition-delay: 0s;
}

/*controls the popup text that appears on hover*/
#chillmodediv{
    top: 100%;
  right: 100%;
}

#videolinkdiv{
    top: 60px;
    right: 240px;
}

#musiclinkdiv{
    top:60px;
    left: 200px;
}

#merchlinkdiv{
    top: 60px;
    left: 200px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition-delay: 0.3s;
}

.texttip {
    cursor:pointer;
}
.description {
    display:none;
    position: absolute;
    z-index: 1;
    transition-property: visibility;
    transition-delay: 0s;
    border:1px solid #000;
    width:400px;
    height:400px;
}

/*------------------------DELETE THIS WHEN MERCH HAS BEEN ADDED---------------------*/
#warning_container{
    width: 200px;
    height: 20px;
    display: flex;
    justify-content: center;
}
#warning{
    font-size: 20px;
}
/*------------------------------------------------------------------------------------*/

/*FOR THE POPUP */
#popup {
    position: fixed; /* Stay in place on the page */
    display: none;
    width: 50%;
    left: 25%;
    top: 10%;
    height: 85%;
    background-color: black;
    border-radius: 5px;
    z-index: 100; /* Ensure popup is on top of other elements */
}

.modal-overlay {
    position: fixed;
    display: block;
    45top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparentbackground */
    z-index: 99; /* Below the modal */
    display: none;
}

.closerow{
    width: 100%;
    height: 5%;
}

#closepopup{
    display: flex;
    float: right;
    right: 0px;
    height: 100%;
    width: 50px;
    align-items: center;
    justify-content: center;
}

#x_symbol{
    margin: 0 auto;
    height: 100%;
}

#x_symbol:hover{
    transform: scale(1.2);
}

#popcontentcontainter {
    max-width: inherit;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center; /* Center content horizontally */
    align-content: space-around;
}

#popupcontent {
    width: 100%;
    max-width: 60%; /* Adjust as needed */
    display: flex;
    flex-direction: column; /* Stack items */
    align-items: center; /* Center image */
}

.popuptext{
    font-size: clamp(40px, 2vw, 100px); /* Responsive font size */
    color:red;
    text-align: center;
    line-height: 1.5;
}
#popupimage {
    max-width: 100%;
    height: auto;
    display: block;
}

/*------------------------DELETE THIS WHEN MERCH HAS BEEN ADDED---------------------*/
#warning_container{
    display: none;
}


/*------------------------------------------------------------------------------------*/

#flyingImage {
    display: none;
    position: fixed;
    width: 100px; /* Initial small size */
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    opacity: 1; /* Start hidden */
    pointer-events: none;
    transition: opacity 1s ease-out; /* Fade out over 2 seconds */
    
}

#flyingImage.fly {
    width: 100vw; /* Expand to cover screen */
    height: 100vh;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#flyingImage.fade {
    opacity: 0;
    transform: opacity 1s ease-in-out;
}


#phoneWarning {
    position: fixed;
    width: 100px; /* Initial small size */
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    opacity: 0; /* Start hidden */
    transition: opacity 1s ease-in-out; /* Slow fade-in */
}

#phoneWarning.fly {
    width: 100vw; /* Expand to cover screen */
    height: 100vh;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#phoneWarning.fade {
    opacity: 0;
    transform: opacity 1s ease-in-out;
}
