

:root{
    --highlight: #37E3E6;
    --secondary: #378CE6;
    --main: #3A37E6;
    /* --color-1: #2ED2EF;
    --color-3: #2E72EF;
    --color-2: #4B2EEF; */
    --color-1: orange;
    --color-3: rgb(13, 13, 44);
    --color-2: #2c3e50;;
     
}


/* Core resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}




body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Pushes footer to bottom */
    /* background-color: #2c3e50; */
    background-color: var(--color-2);
    
    
}


p{
    margin-bottom: 20px;
    color: #fff;
    /* background-color: #2c3e50; */
    background-color: var(--color-2);
}

/* 1. Header Navigation Bar (Horizontal alignment) */
.navbar {
    display: flex;
    justify-content: space-between; /* Pushes logo left, nav-links right */
    align-items: center;            /* Centers items vertically */
    /* background-color: #2c3e50; */
    padding: 20px;
    color: white;
    background-color: var(--color-2);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}
.business-name{
    font-size: 1.4rem;
}

.logo-image{
    height: 5em;
}
.hero-image{
    width: 100%;
    max-width: 1000;
}
/* 2. Main Content Wrapper (Changes flow dynamically) */
.main-layout {
    display: flex;
    flex: 1; /* Causes main area to expand and fill available height */
    flex-direction: column; 
    /* background-color: #2c3e50; */
    background-color: var(--color-2);
   
}

.hero-section{
    flex: 1;
    max-height: 600px;
    overflow: hidden;
}

.services {
    flex: 1;
    /* background-color:#2c3e50; */
    background-color: var(--color-2);
 
}
.section-header{
    background-color:rgb(13, 13, 44);
    color: white;
    text-align: center;
    padding: 1em;
    border-bottom: #fff;
    /* border-top-style: solid;
    border-top: #fff; */
    border-bottom-style: solid;
    margin-bottom: 20px;
    background-color: var(--color-3);
    

    
}
.flex-row-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
        display: flex;
    flex-direction: row;
    align-content: center;
    margin-bottom: 20px;
    justify-content: center;
    color:white;
}
.card{
    
    width: 300px;
    overflow: hidden;
    flex-grow: 1;
    background-color: #4c6986;
    border: #2c3e50;
    /* border: white; */
    border-style: solid;
    border-radius: 30px;
    background-color: var(--color-3);
}
.card p{
     /* background-color: #4c6986; */
     background-color: var(--color-3);
}
.card-text{
    margin: 20px 10px;
    font-size: 1rem;
    text-align: left;
    line-height: 1.7rem;
}
.card-heading{
    
    font-size: 0.5em;
    /* background-color:rgb(13, 13, 44); */
    padding: 1.5rem 0px;
    color: white;
    border-bottom: #fff;
    border-bottom-style: solid ;
    background-color: var(--color-3);

   
    text-align: center;
}
.card-image{
    width: 100%;
    margin: 0px 0px;

}
.service-image{
    width: 100%;
    border-bottom: white;
    border-bottom-style: solid;
}
.card .ul .li{
    list-style: none;
}
.about {
    flex: 1; /* Occupies 3 times the space of the sidebar */
    
   
}
.about-text{
    font-size: 1rem;
    line-height: 1.7rem;
    margin: 20px 100px;
   
    
    
}
.contact {
    flex: 1; /* Occupies 3 times the space of the sidebar */
    
}
.contact_section{
    
    text-align: center;
    line-height: 1rem;
    font-size: 1rem;
    margin-bottom: 0px;
    
}
.section-contact-name{
    padding-top: 10px;
}
.qrcode{
    display: flex;
    align-items: center;
}
.hours {
    flex: 1; /* Occupies 3 times the space of the sidebar */
   
    
}
.hours-text {
    font-size: 1rem;
    line-height: 1.7rem;
    text-align: center;
    color: #fff;
}
.hours-text ul ui{
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    list-style: none;
}
.schedule-apt {
    display: flex;
    flex-direction: row;
    align-content: center;
    margin-bottom: 20px;
    justify-content: center;
}
.appointment-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-align: center;
    color: white;
    /* background-color: orangered; */
    height: 40px;
    width: 270px;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 40px;
    background-color: var(--color-1);
}
.appointment-button:hover {
    /* background-color: orange; */
    background-color: var(--color-3);
    color: white;
}
#map {
    width: 100%;
    margin: 0px;
    padding: 10px;
}
.qrcode {
    display: flex;
    flex-direction: row;
    align-content: center;
    margin-bottom: 20px;
    justify-content: center;
}
.payments {
    flex: 3; /* Occupies 3 times the space of the sidebar */
   

}
#amex-logo {
    width: 100%;
}
#cc-image {
    padding-left: 20%;
    padding-right: 20%;
    width: 60%;

}

/* 4. Footer Alignment */
.site-footer {
    background-color:rgb(13, 13, 44);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto; /* Ensures footer stays pinned to bottom */
    border-top: #fff;

    border-top-style: solid;
    background-color: var(--color-3);
}
.site-footer p{
    background-color:rgb(13, 13, 44);
    background-color: var(--color-3);
}


@media (max-width: 768px) {
    .main-layout {
        flex-direction: column; /* Stacks sidebar above content on mobile  */
	margin:10px;
    }
    .flex-row-container{
        flex-direction: column;
        width: 100%;
    }
    .card{
        width: 100%;
    }
    .navbar {
        flex-direction: column; /* Stacks logo above nav-links on mobile */
        gap: 10px;
    }
    .about-text{
        font-size: 1rem;
        line-height: 1.7rem;
        padding: 0;
        margin: 10px;
    }
    #map {
        width: 100%;
        margin: 0px;
        padding: 5px;
    }
    h1{
        font-size: 1rem;
    }
    #cc-image{
	width: 90%;
    }
}

