/* General styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}


p{
    line-height: 1.5em;
    letter-spacing: 0.05em;
}

.sellingPointBigH2{
    font-size: xxx-large;
    font-weight: bolder;
    margin-bottom: 0.2em;
}

.sellingPointP{
    margin-top: 2rem;
    max-width: 50%;
    margin-inline: auto;
}

.smallTitle{
    line-height: 1.5em;
    letter-spacing: 0.05em;
}

.sellingPointImg{
    width: 75%;
    height: auto;
    margin-inline: auto;
    margin-top: 4rem;
}



.sellingPointImgSmaller{
    width: 50%;

    height: auto;
    margin-inline: auto;
    margin-block: 4rem;
}

.nostyleanchor{
    text-decoration: none;
    color: black;
}

main#main {
    width: 100%;
    overflow-x: hidden;
}

/* Top section styling */
.infoTopSection {
    background-color: #f0f0f0;
    
    text-align: center;
    display: flex;
    background-image: url('../img/backGlupsInfo2_hq_cut.webp');
    background-repeat: no-repeat;
    background-position: center top;
    height: 100vh;
    color: white;
    width: 100%;
}

.infoTopSectionGM {
    background-color: #1B2735;
    text-align: center;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    
    background-image: url('../img/gmback.avif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Stretch to cover the entire container */
    
    height: 100vh; /* Full viewport height */
    width: 100%; /* Ensure it takes full width */
    color: white;
}


#downArrowImg {
    width: 3rem;
    height: auto;
    left: calc(50% - 1.5rem);
    position: absolute;
    bottom: 3vh;
    
}



#topDescWrapper {
    
    height: 30%;
    margin-top: 35vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    padding: 1rem;
    padding-inline: 10%;
    align-items: center;
    justify-content: space-evenly;   
    
}

#topDescWrapperGM {
    
    height: 30%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    padding: 1rem;
    padding-inline: 10%;
    align-items: center;
    justify-content: space-evenly;   
    
}


#infoLogo {
  height: 90%;
}

#infoTitle, #infoTitleSub {
    margin: 10px 0;
}

#infoMainButtonsWrapper {
    margin-top: 20px;
}

.infoMainButton {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.infoMainButton:hover {
    background-color: #0056b3;
}

/* Feature section styling */
.featureWrapper {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    padding-inline: 20%;
    color: #252525;
}

.featureWrapper.reversed {
    flex-direction: row-reverse;
}

.featureImageWrapper {
    flex: 1;
    padding: 10px;
}

.featureImage {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.featureDescWrapper {
    flex: 1;
    padding: 10px;
}

.featureTitle {
    margin-top: 0;
}

.featureDesc {
    margin: 10px 0;
}

.featureList {
    list-style-type: none;
    padding: 0;
}

.featureListItem {
    background-color: #e9ecef;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}

.videoFeature{
    background-color: black
}

/* pulsing animation */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}



.call2a{
   font-weight: bold;
   background-color: #ffea00;

   animation: pulse 1s infinite;

}

/* feauturevideo */

.featureVideo{
    width: 100%;
    height: auto;
    margin-top: 2rem;

}






.sellingPointsWrapper{

    padding-top: 10vh;

    min-height: calc(100vh - 10vh);
    
    background-color: rgb(26, 26, 26);
    padding-inline: 20%;
    color: white;
    text-align: center;
}

ul.sellingPointsList{
    list-style-type: none;
    padding: 0;
    margin-block: auto;
    
}

.sellingPointListItem{
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--panel-color);
    
    
}

.sellingPointFeatureDescWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-align: left;
    margin-bottom: 4rem;

}

.sellingPointFeatureDescWrapper> .featureList{
    width: 100%;
    font-size: large;
}


#contactDiv{
    height: 100vh;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: white;
    text-align: center;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.contactInnerWrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    font-size: large;
}

.contactInnerWrapper>img{
    max-width: 15vw;
}

.contactInnerWrapper>a{
    color: black;
    
}



/* for the pilothow page */

#pilothowSteps{
    color: var(--color);
    background-color: var(--bgcolor);
    padding: 2rem;
    width: 100%;
    font-size: large;
    line-height: 2em;
    text-align: left;

}



/* Responsive adjustments */
@media (max-width: 950px) and (orientation: landscape) {
    .featureWrapper {
        flex-direction: column;
    }
    
    .featureWrapper.reversed {
        flex-direction: column;
    }

    .featureImageWrapper {
        padding: 0;
    }

    .featureDescWrapper {
        padding: 0;
    }

    .sellingPointsWrapper{
        padding-inline: 5%;
    }


    .sellingPointImg{
        width: 100%;
    }


    .sellingPointP{
        max-width: 100%;
    }

    #topDescWrapper {
        padding-inline: 5%;
        flex-direction: column;
        background-color: transparent;
        
    }

   #downArrowImg{
    display: none;
   }



}


/* portrait */

@media (max-width: 768px) and (orientation: portrait) {
    .featureWrapper {
        padding-inline: 5%;
        flex-direction: column;
    }
    
    .featureWrapper.reversed {
        flex-direction: column;
    }

    .featureImageWrapper {
        padding: 0;
    }
    
    .featureDescWrapper {
        padding: 0;
    }
    
    .sellingPointsWrapper{
        padding-inline: 5%;
    }


    .sellingPointImg{
        width: 100%;
    }

    .sellingPointP{
        max-width: 100%;
    }

    #topDescWrapper {
        padding-inline: 5%;
        flex-direction: column;
        background-color: transparent;
        
    }

    #topDescWrapperGM {
        padding-inline: 5%;
        flex-direction: column;
        background-color: transparent;
        
    }

    .infoTopSection {
        background-image: url('../img/backGlupsInfo2_hq_cut.webp');
        background-size: cover;
        background-position: center;
    }

    
    .infoTopSectionGM {
        background-image: url('../img/gmback.avif');
        background-size: cover;
        background-position: center;
    }

    #infoDescWrapper {
     background-color: rgba(0, 0, 0, 0.7);
     padding: 1rem;
    }



    #downArrowImg {
        display: none;
        
    }


}
