/* Styles defined for the desktop or the bigger screen devices*/
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 200;
    font-style: normal;
    background-color: #f4e7e0;
}

.mobile-image {
    display: none;
}

/* Header Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    /* background-image: linear-gradient(90deg, #E7C3A6, #B5542B); */
    background-color: #E7C3A6;
    /* background-color: transparent; */
}

.logo {
    padding: 0 5rem;
}

.logo .logo-heading {
    color: #fff;
}

.menu {
    padding: 0 0rem;
}

.hamburger {
    display: none;
    color: #fff;
    font-size: 25px;
}

.cross-icon {
    display: none;
}

.menu .menu-list {
    display: flex;
    list-style: none;
}

.menu-list .menu-list-items {
    padding: 0.5rem 1rem;
}

@media screen and (min-width: 856px) and (max-width: 1024px) {
    .menu-list .menu-list-items {
        padding: 0.5rem 0.3rem;
    }
}

/* Main Hero Section Styles */
.hero {
    background-image: url('gifs/AMwebsiteHero2.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0rem 0; 

}  

.hero .intro {
    text-align: center;
    margin: 0 10rem; /* Increased margin to move text to the right */
    color: #344A70;
    width: 40%;
}

.hero .headings {
    padding: 0 2rem; /* Optional: Add padding to move the text even more to the right */
    letter-spacing: 1px;
}

.hero .intro-buttons {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* About section styles */
.about {
    display: flex;
    align-items: center;
    background-color: #f4e7e0;
    justify-content: space-between;
    width: 100%;
}

#about-head {
    color: #344A70;
    font-size: 6em;
    font-weight: 200;
    letter-spacing: 4px;
    padding-bottom: .25em;
}

.about .about-text {
    max-width: 40em;
    font-weight: 200;
    font-size: 1.2em;
    color: #344A70;
    padding: 5rem 1rem 5rem 5rem;
    text-align: center;

}

.about .about-image img {
    max-width: 30em;
    margin: 5rem 5rem 5rem 1rem;
}

/* Portfolio section styles */
.portfolio {
    margin: 4.8rem 0;
    padding: 0 5rem;
}

.port-card {
    padding: 0 !important;
    background: none !important;
    border: 1px solid #344A70;
    
}

.port-card .image {
    width: 100%;
}

.port-card .image img {
    height: 27vh;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    
}

/* Services section styles */
.services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 4.8rem 0;
    padding: 0 5rem;
}

.my-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0rem 0;
}

.my-row .my-col {
    text-align: center;
    width: 47%;
}

.my-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-image: linear-gradient(#E7C3A6, #DBA888);
    padding: 1rem;
    margin-bottom: 1rem;
}

.icon {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #395F80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    font-size: 30px;
    color: #fff;
}

/* Contact section styles */
.contact {
    padding: 0 5rem;
    margin: 4em;
}

.contact-content {
    display: flex;
    margin: 3rem 0;
    justify-content: space-between;
}

.contact-form-container {
    width: 80%;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-controls {
    width: 80%;
    padding: 10px 0;
    margin: 1.67rem 0;
}

.contact-form .form-btn {
    width: 83%;
}

.contact-details {
    width: 80%;
    margin:auto;
    margin-top: 5%;
    text-align: center;
}

.contact-heading {
    font-size: 1.5em;
    color: #344A70;
}

/* Footer Styles */
.footer {
    background-color: #DBA888;
    color: #fff;
    padding: 2rem;
    font-weight: 100;
    width: 100%;
}


.footer-list-items {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    margin: 1rem 1rem 0 1rem;
    border-radius: 50%;
    background-color: #395F80;
}

.footer-links {
    /* font-size: 24px; */
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu {
    padding: 0 5rem;
}

.footer-menu .footer-menu-list {
    display: flex;
    list-style: none;
}



a {
    text-decoration: none !important;
}


/* utility classes */
.greet-heading {
    font-size: 1.3rem;
    font-weight: 200;
    margin: 0;
    letter-spacing: 1px;
}

.my-heading {
    font-size: 4rem;
    margin: 0;
    padding-bottom: .5em;
    color: #344A70;
    letter-spacing: 2px;
    font-weight: 200;
}

.sub-heading {
    margin: 0;
    font-size: 01rem;
    color: #344A70;
    font-weight: 200;
}

.links:hover {
    border-bottom: 2px solid #fff;
}

.links {
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    padding: 5px;
    text-decoration: none;
    color: #fff;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    border: none;
}

.common-btn {
    background-color: #344A70;
    color: #fff;
    border: 2px solid #344A70;
    transition: all 0.25s;
    padding: 1em 3.5em;
}

.common-btn:hover {
    background-color: #DBA888;
    color: #fff;
    border: 2px solid #DBA888;
    outline: none;
}

.ghost-btn {
    background-color: #f4e7e0;
    color: #344A70;
    border: 2px solid #344A70;
    outline: none;
    padding: 1em 3.5em;
}

.ghost-btn:hover {
    background-color:#DBA888;
    color: #fff;
    transition: all 0.25s;
    border: 2px solid #DBA888;
}

.heading-span {
    font-weight: bolder;
}

.text-center {
    text-align: center;
}

.small-para {
    font-size: 14px;
    color: #fff;
}

p.lead-para {
    font-weight: 100 !important;
}

.white-text {
    color: #fff;
}

.blue-text {
    color: #395F80;
}


#invisible {
    visibility: hidden;
}