:root {
    --logo-green:  #355E3B;
    --logo-gold:   #fccf74;
    --bg-light:      #F7F3EB;
    --text-dark:   #2B2B2B;
    --text-light:  #F7F4EE;
    --text-hover:  #c7c7c7;
    --bg-wood:     #725438;
    --default-font: 'Roboto', sans-serif;
    --brand-gold-hover: #C9A058;
    --brand-gold: #D7B26A;
    --shadow-light: rgba(0,0,0,0.4);
    --logo-height: 105px;
} 


footer a{text-decoration: none;
    color: inherit;
    ;}

.footer-credit {
    white-space: nowrap;
}

footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color:#2b2b2b7c;
    padding: 10px 0;
}

textarea{
    resize: none;
}
.seo-hidden{
    display: none;
    visibility: hidden;
}
.greenBox{
    background-color: #2a5a03;
    height: .5vh;
            box-shadow: 0 0px 10px var(--shadow-light);
    border-radius: 5px;
}
.arrowWrapper{
    display: flex;
    justify-content: center;
}
.arrowWrapper img{
    height: 3vw;
    width: auto;

}

.leftSideText{
padding-left: 25px;
  padding-right: 25px;
    text-align: center;
    font-size: 1.2vw;
}
.contactForm.navbarButton{
    max-width: 100%;
}
html, body{
    scroll-behavior: smooth;
    box-sizing: border-box; 
    font-family: var(--default-font);   
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Important: Prevents double scrollbars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
}
* {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;      /* Firefox */
}

a{
    text-decoration: none;
}
/* navbar Stuff */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;        
    z-index: 999999;
    padding-top:5px;
    padding-left:5px;
    padding-right:5px;
    background-image: linear-gradient(#2a5a03, #2a5a03);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;
}
.navbar .site-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}
.navbarButton img {
    height: 1em;
    padding: 0.25em;
    width: auto;
}

.mobileContactWrapper {
    display: none;
}

/* buttons */

.buttonWrapper{
    gap: 1em;
    display: flex;
    padding: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
}

.navbarButton {
    min-height: 60px;
    font-size: 1em;
    background-color: var(--brand-gold);
    border: 4px solid rgba(0,0,0,.25);
    box-shadow:  0 0 0 2px rgba(0, 0, 0, 0.5);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    width: auto;
    min-width: 44px;
    height: auto;
    white-space: nowrap;
}

.navbarButton:hover {
    background-color: var(--brand-gold-hover);
    transform: translateY(-1px);
}

/* navbar links */

.navLinks {
    display: flex;
    gap: 1rem;
    font-size: 1.3em;
    align-items: center;
}

.navLinks a {
    color: var(--text-light);
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
}


.navbar .site-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}


.menu-icon {
    display: none;
}


.buttonsMobile {
    display: none;
}

.navbarPages {
    display: flex;
    gap: 2rem; 
    flex-direction: row;
    font-size: 1.4em;
    letter-spacing: .05em;
    align-items: center;
    flex-grow: 1;
}

.navbarPages a {
    color: var(--text-light);
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
    white-space: nowrap;
}

.navbarPages a:hover {
    color: var(--text-hover);
}

.navbarButtons{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}



.spacer{
    display: none;
}
.menuOptions{
    display: none;
}
#home{
    scroll-padding-top: 90px;
}



.scroller {
    overflow-y: scroll;
    
    scroll-padding-top: 85px;

    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE / old Edge */
    /* --- Scroll Snap Addition --- */
    height: 100vh;
    scroll-snap-type: y mandatory;
}


.scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Updated .page class for internal scrolling */
.page {
    height: 110vh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow-y: auto; 
}


/*/--------------------HOMEPAGE SCROLLER 1---------------------------- */



.mainSlideshow{
    overflow:auto;
    box-shadow: 0 0px 10px var(--shadow-light);

    position: relative;
    overflow: contain; 
    background-image: url('/img/homePhoto.jpg');
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
 width: 100%;
 
    padding-top:50px;
    height: 100vh; 
    min-height: 500px; 
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}
.heroText{
    flex-shrink: 1;
    justify-content: center;
    justify-content: center;
    overflow: visible;
    padding:20px;
    letter-spacing: .05em;
    

    margin-top: 20px;

    color: var(--text-light);
        text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
        font-size: 2.8vw; 
}

.emergencyServiceText{
    display: flex;
    justify-content: center;
    align-items: end;
   
    position: static; 

    margin-bottom: 20px; 
    width: 100%;        
    box-sizing: border-box; 
      color: var(--logo-gold);
        text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
    font-size: 4vw;
}






.mainSlideshow .contactForm{
    margin-left: auto;
    margin-right:25px;    
    bottom: 20px;
    right: 20px;
    z-index: 10;
    box-shadow: 0 0px 10px var(--shadow-light);
    border: 2px solid #0000009f;
    background-color: #fffffad0;
    padding: 20px;
    border-radius: 25px;
}


.mainSlideshow .contactForm h1{
    letter-spacing: 3px;
       color: var(--text-light);
            text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
}
.mainSlideshow .contactForm .greenBox{
    background-color: #2a5a03;

}
.infostuff{
    padding-top:25px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.infostuff button{
    width: 100%;
}




/*--------------------PAGE 2 ABOUT US---------------------------- */








.servicesText{
    margin-top:75px;
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    align-items: center;
    font-size:3vw;
    text-align: center;
}

.aboutUsBox{
        display: flex;
    align-items: center;
        border: 2px solid #0000009f;

    justify-content: center;
            box-shadow: 0 0px 10px var(--shadow-light);
margin: 0 auto;
    border-radius: 25px;
    background-color: #fffffA;


    max-width: 90vw;
}
.rightSideWrapper{
    padding:25px;
    margin-left:25px;
    
    color: #1a4202;
    font-weight: bold;
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rightSideWrapper p{
    font-size: 1.5vw;
}
.rightSideWrapper img{
    object-fit:cover;
    margin-top:25px;
                box-shadow: 0 0px 10px var(--shadow-light);

    border-radius: 25px;
    width: 35vw;
    height: 35vh;
}

.rightSideWrapper .greenBox{
    margin-top:25px;
        width: 25vw;

}


/*--------------------PAGE 3 SERVICES---------------------------- */
.serviceBox{
    margin:25px;
    margin-top:0px;
    margin-bottom: 0px;
    border: 2px solid #0000009f;

    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFFFFA;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 25px;
        box-shadow: 0 0px 10px var(--shadow-light);
        width: 25vw;
        max-height: 100%;

}
.contentBox{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-evenly;
    padding-top: 25px;
    padding-bottom: 25px;
}

.serviceBox img{
                box-shadow: 0 0px 10px var(--shadow-light);

    margin-top: 25px;
    width: 100vw;
    height: 25vh;
  
    object-fit: cover;     
    background-color: #eee;   
    border-radius: 15px;
    max-width: 100%;

}
.serviceBox h1{
    font-size: 2vw;
}
.serviceBox p{
    font-size: 1vw;
    text-align: center;
    margin-top: 25px;
    color: var(--text-dark);
  
}


.serviceBox .greenBox{
    width:80%;
}

.servicesTextTwo{
    display:flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    font-size: 4.3vw;
}






/*--------------------PAGE 4 FAQ US---------------------------- */
.question{
    display: flex;
    border: 2px solid #000000;
                box-shadow: 0 0px 10px var(--shadow-light);
    padding-left:25px;
    padding-right:25px;
    margin-top:25px;
    flex-direction: column;
    width: 80%;
    align-items: flex-start;
    justify-content: space-between;
}
#faq .servicesText{
    margin-top:75px;
}
.question img{
    max-width: 50px;
}
.questionBox{
        border: 2px solid #0000009f;
    
    margin-left: 1%;
    margin-right: 1%;
   padding-bottom: 25px;
            box-shadow: 0 0px 10px var(--shadow-light);
    display: flex;
    overflow-x: hidden;
    border-radius: 25px;
    flex-direction: column;
    background-color:#FFFFFA;
    align-items: center;
    margin-bottom:100px;
  
}
.questionTop{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.questionBox h1{
    padding-top:25px;
    font-size: 3vw;
    text-align: center;
   
}

.questionTop h2{
    font-size: 1.2vw;
    padding-right: 25px;
    
}
.questionAnswer p{
    font-size: 1.2vw;
}



/*--------------------PAGE 5 CONTACT US---------------------------- */
#contact .servicesText{
    margin-top:75px;
    padding-bottom: 0;
}
.contactBox .contactForm{
 
                     box-shadow: 0 0px 10px var(--shadow-light);
    border: 2px solid #0000009f;
    /* FIX: Changed fixed padding to responsive padding */
    padding: 2vw; 
    display: flex;
    background-color: #FFFFFA;

    width: 30%;
    flex-direction: column;
}


.contactBox{

    display: flex;
    background-color: var(--bg-light);
    border-radius: 25px;
    justify-content: space-evenly;
    flex-direction: row;
    padding:25px;
    margin-bottom: 100px;;
}
.mapWrapper{
    align-items: center;
}
.mapWrapper iframe{
    width: 100%;
    height: 100%;
    
}
.mapWrapper{
    padding:25px;
                   box-shadow: 0 0px 10px var(--shadow-light);
    border: 2px solid #0000009f;
   background-color: #FFFFFA;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.mapWrapper h1{
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapWrapper .greenBox{
    margin-top: 25px;;
    width:100%;
}

/*FAWNDSHIT MOBILE STYLES*/


/* Mobile Styles */
@media (max-width: 1200px) {
.servicesText{



    display:flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 8vw;
 
}

.questionBox h1{
    font-size: 4vw;
    text-align: center;
   
}

.questionTop h2{
    font-size: 2.2vw;
    padding-right: 25px;
    
}
.questionAnswer p{
    font-size: 2.2vw;
}


    .navbarButtons{
        display: flex;
        padding:5px;
        flex-direction: column;
    }
    .navbarButton {
    font-size: .8em;
    background-color: var(--brand-gold);
    border: 4px solid rgba(0,0,0,.25);
    box-shadow:  0 0 0 2px rgba(0, 0, 0, 0.5);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 20vw;
    min-width:20px;
    height: auto;
    white-space: nowrap;
}

.page {
    padding-top:150px;
    height: 110vh;
}
.mainSlideshow{
    margin-top:-5px;
}

/* Mobile Styles */
@media (min-width:1200px) {
   
    #home{
    padding-top:50px;
    }
    
}

@media (max-width: 950px) {

.contentBox{
    gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


    .questionBox h1{
    font-size: 6vw;
    text-align: center;
   
}

.questionTop h2{
    font-size: 5vw;
    padding-right: 25px;
    
}
.questionAnswer p{
    font-size: 5vw;
}

.navbarButtons, .navbarPages{ 
 display: none;
}


 .navbarButton {
    
      

    background-color: var(--brand-gold);
    border: 4px solid rgba(0,0,0,.25);
    box-shadow:  0 0 0 2px rgba(0, 0, 0, 0.5);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    width: 45vw;
    min-width:20px;
    height: auto;
    white-space: nowrap;
}



.buttonsMobile { 
    position: fixed;
    top:20.9vw;       
    left: 0;
    right: 0;
    z-index: 9999;
    padding-top:10px;
    padding-bottom:5px;
    width: 100%;
    background-image: linear-gradient(#2a5a03, #1f4402);
    display: flex;
    flex-direction: row;
    justify-content:    center;
    
    gap:3vw;
    align-items: space-evenly;
}   
.buttonWrapper {
        flex-shrink: 0;
        font-size: 3vw;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 5px 20px;
        justify-content: center;
        overflow-x: hidden;
    }
.spacer{
        display: flex;
        visibility: hidden;
    }

    .menu-icon:hover {
        background-color: rgba(0,0,0,0.10);
    }
  .navbar .site-logo{

        height: 20vw;
        
    }
    .menu-icon {
        
        display: flex;
        float: right;
        height:20vw;
     
    }

    .displayMenu{
     position: fixed; 
        top: 0px;          
        right: 0px;      
        z-index: 99999;  
        margin-top:-2px;    
        padding:5px;
        background-image: linear-gradient(#1f4402, #1a4202);


        width: 50vw;
        height: 100vh;
      
    }
    .displayMenu.closed {
  margin-left: -200px;
}
    .menuTrigger{
        display: flex;
        visibility: visible;
    }
    .closeMenu{
        display: none;
        visibility: hidden;
    }





/* Side Menu Options */

.menuOptions{
    display: flex;
    padding-top: 10rem;
    flex-direction: column;
    justify-content: center;
    gap: 3em;
    padding-left:50%;
    font-size:1em;
    padding-left: 25%;
    align-items: center;
}

.menuOptions a {
  
    font-size: 2.5em;
    overflow: hidden;
    border-bottom: 2px solid rgba(0,0,0,0.25);
         
    color: var(--text-light);
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
}

.mapWrapper {
    width: 30%;
}

.mapWrapper iframe {
    height: 500px;
}





/*/--------------------HOMEPAGE SCROLLER 1---------------------------- */

.contactForm h1{
    text-align: center; 
}

.mainSlideshow{
    overflow:auto;
    box-shadow: 0 0px 10px var(--shadow-light);
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: contain; 
    background-image: url('/img/homePhoto.jpg');
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; 
    margin-top:50px;

}
.heroText{
    flex-shrink: 1;
    text-align: center;
    justify-content: center;
    justify-content: center;
    overflow: visible;
    padding:20px;
    letter-spacing: .05em;
 
    margin-top: 20px;

    color: var(--text-light);
        text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
        font-size: 8vw; 
}

.emergencyServiceText{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: end;
    position: static; 
    margin-bottom: 20px; 
    width: 100%;        
    box-sizing: border-box; 
      color: var(--logo-gold);
        text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
    font-size: 8vw;
}



#faq{
    margin-top:50px;
}



.aboutUsBox{
    flex-direction: column;
    margin-bottom:150px;;
}

.leftSideText{
    font-size:4vw;
}
.rightSideWrapper{
    padding:25px;
    margin-left:0px;
    margin-top:25px;
    color: #1a4202;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rightSideWrapper p{
    font-size: 5.7vw;
    text-align: center;
}
.rightSideWrapper .greenBox{
    margin-top:25px;
        width: 60vw;

}
.rightSideWrapper img{
width: 100%;
height:100%;
}

/* Mobile Styles */


.mainSlideshow .contactForm{
margin-left: 25px;
  margin-right: 25px;
}


.mainSlideshow .contactForm h1{
    letter-spacing: 3px;
       color: var(--text-light);
            text-shadow:
        -2px -2px 0 black,
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black;
}
.mainSlideshow .contactForm .greenBox{
    background-color: #2a5a03;

}
.infostuff{
    padding-top:25px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.page {
    
 
    height: 110vh;
    padding-bottom:100px;
}
.serviceBox{

    border: 2px solid #0000009f;

    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFA;
    width: 80%;
    
        box-shadow: 0 0px 10px var(--shadow-light);

}


.serviceBox img{
                box-shadow: 0 0px 10px var(--shadow-light);

    margin-top: 25px;
    width: 100vw;
    height: 40vh;
  
     /* grows on desktop, shrinks on mobile */
    object-fit: cover;      /* shows whole image */
    background-color: #eee;   /* optional frame */
    border-radius: 15px;
    max-width: 100%;

}
.serviceBox h1{
    font-size: 8vw;
}
.serviceBox p{
    font-size: 7vw;
    text-align: center;
    margin-top: 25px;
    color: var(--text-dark);
  
}


.contactBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 100px;
    background-color: var(--bg-light);
    border-radius: 25px;
}


.contactBox .contactForm, 
.contactBox .mapWrapper {
    width: 100%;
    box-sizing: border-box; 
    background-color: #FFFFFA;
    border: 2px solid #0000009f;
    box-shadow: 0 0px 10px var(--shadow-light);
    display: flex;
    flex-direction: column;
}

.contactBox .contactForm h1 {
    text-align: center;
    font-size: 5vw;
}
.navbarButton{ 
    font-size: 3vw;
}
.contactBox .contactForm {
    padding: 2vw; 
}
#contact .servicesText{
    margin-top:75px;
    padding-bottom: 0;
}
.heroText {
    font-size: 7vw; 
}
.mainSlideshow {
    margin-top:0px;
}
.contactBox .mapWrapper {
    justify-content: center;
    align-items: center;

}}}

