/* variables */

body{
    height: 100%;   
    justify-content: center;
    align-items: center;
    background-color: #000000; /* Light background for contrast */
    position: relative; /* Ensure absolute positioning works */
}




@media(max-width: 700px) {

    
    .info  .btn {
        text-align: center;
        margin: 0;
        border-radius: .5em;
    }
}
 
.showcase h1 {
    color: var(--darkColor);
    xxxxtext-shadow: 1px 1px 8px rgba(255,255,200,1);
}

#intro {
    color: var(--dark);
    background-color: rgba(255,255,255, .9);
    padding:15px;
    /* max-width:1200px; */
    min-width:250px;
    width:100%;
}


div {
    border-radius: 0rem;
}



/* M E D I A   Q U E R I E S -------------------------------------- */

@media(max-width: 1200px) {
   
    #main-logo, #lower-logo {
        width: 200px;
        height: 68px;
    }
    #lower-logo {
        padding:.5rem;
    }
    #portfolio-title {
        min-height:86px;
        height: 100%;
    }
    .grid-container > div {
        font-size:12px;
    }
}



#logoDiv {
    
    color:white;
    font-weight: normal;
    padding: 35px;
}
  


  .fading-div {
    padding:40px;
    background-image: radial-gradient(
    ellipse,
    #ffffff 0%,
    #ffffff 10%,
    rgba(255, 255, 255, 1 ) 50%, 
    rgba(255, 255, 255,.0) 65%, 
    rgba(255, 255, 255, 0) 80%,
    rgba(255, 255, 255, 0) 100%
   
  ); 
  } 
  #paddingX {
    padding:40px;
  }
  #logoDiv {
    
    text-align:center;
}
 /* Media query for phones (e.g., max-width: 767px) */
/*@media (max-width: 767px) {*/
/*    .grid-container {*/
/*      grid-template-areas:*/
/*        "header"*/
/*        "menu"*/
/*        "main"*/
/*        "right"*/
/*        "footer";*/
/*      grid-template-columns: 1fr;*/
/*      grid-template-rows: auto auto 1fr auto auto;*/
/*    }*/
  
/*    .grid-container > div {*/

/*        text-align: left;*/
/*        padding: 10px 0;*/
/*        font-size: 12px;*/
/*        padding: 12px;*/
/*      }*/

/*    .item1,*/
/*    .item2,*/
/*    .item3,*/
/*    .item4 {*/
/*        grid-column: 1;*/
/*        min-width:200px;*/
/*      }*/
/*    .item5 {*/
/*      grid-column: 1;*/
/*      min-width:200px;*/
/*    }*/
/*    .item3 {*/
/*        display:none;*/
/*    }*/

/*    .bottom-nav {*/
/*        visibility:hidden;*/
/*    }*/
  }
  #overlay {
    z-index: 1000;
    background-color: white;
    visibility: hidden; /* Hidden by default */
    border: 4px solid black;
    width: 50%;
    height: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex; /* Use flexbox for content alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow */
    padding:30px;
    border-radius:5px;
    vertical-align: top;
}
    #overlay ul li {
        list-style-type: circle; 
        margin-left:40px;
    }
    #overlayContent {
        width:100%;
        height:100%;
        vertical-align:top;
        text-align:left;

    }


@media(max-width: 480px) {
    .showcase p {
        font-size: 12px; 
    }
    .showcase h1 {
        font-size: 1rem;    
    }
    .large-only {
        display:none;
    }
    #portfolio-title {
        min-height:80px;
    }
    body{
        margin: 3px 3px 3px 3px;
        background-color:black;
    }
    .portfolio, #portfolio, .info, .gallery {
        padding: .5rem .5rem;
    }
    img {
        max-width: 200px;
    }
    #main-logo {
        width:175px;
        height:59px;
    }
    #logoDiv {
        padding:10px;
    }
    .content-container {
        font-size:8pt;
        overflow-y:hidden;
        
        max-height:250px;
    }

}



.img-frame {
    padding:10px;
    background-color:white;
    width:72px;
}

.service-list-list {
    list-style-type:circle;
    margin-left:20px;
}

/*fader*/

body, html {
    height: 100%;
    margin: 0;
    xxxoverflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    xxxxbackground-color: #0066cc; /* Blue background */
}

.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    animation: fadeOut 2s ease-out 2s forwards; /* Start fading out after 8 seconds */
}

.logo {
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    animation: revealLogo 2s ease-out forwards; /* Logo appears over 3 seconds */
}

@keyframes revealLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}


}