:root {
    --primary-color: #06005E;
    --secondary-color: #FFAE00;
    --font-family: 'Open Sans', sans-serif;
    --font-size: 16px;
    --white: #fff;

}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--primary-color);
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    color: var(--secondary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.yellow {
    color: var(--secondary-color)
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 1.3em;
}



.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: var(--secondary-color);
}


.container {
    max-width: 1080px;
    margin: auto;
    overflow: hidden;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

header {
    background-color: transparent;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav {
    font-size: 0.9em;
    font-weight: 300;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #fff;
    margin: 0 10px;
}

nav a:hover {
    color: var(--secondary-color);

}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav div#logo {
    width: 100px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

nav div#logo:hover {
    text-decoration: none;
}

nav div#logo img {
    max-width: 150px;
    height: auto;
}

.hero {
    background: url('/images/hero-bg.webp') no-repeat center center/cover;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 1000px #06005ebe;
    min-height: 80vh;
    margin: -120px 0 0 0;
    height: 400px;
    color: #fff;
    text-align: center;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hero h1 {

    font-size: 1em;
    margin: 0 0 -10px 0;
    /* text-transform: uppercase; */
}

.hero-content {
    max-width: 60%;
}

.hero .hero-content {
    margin: auto;
}

.hero p {
    font-size: 0.9em;
    color: #ffffffe0;
    margin: 20px 0;
    line-height: 1.2em;

}

.hero p#tagline {
    font-size: 2em;
    font-weight: 800;
    line-height: -0.9em;

}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    margin-top: 30px;
}

.hero-btns a {
    font-size: 0.9em;
    color: #fff;
    padding: 18px 30px;
    border-radius: 5px;
    cursor: pointer;

}


.hero-btns #hero-services-btn {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.hero-btns i {
    margin-right: 0.4rem;
}

.hero-btns #hero-services-btn:hover {
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
}


.hero-btns #hero-call-btn {
    border: 2px solid var(--white);
}

.hero-btns #hero-call-btn:hover {
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
}


/* Summary Section */
#summary-section {
    /* padding: 4rem 2rem; */
    background-color: var(--white);
}

#summary-section h2 {
    /* text-transform: uppercase; */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1em;
}

#summary {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

#summary .featured-image-container {
    box-shadow: -20px -20px 0px var(--secondary-color);
}

#summary .featured-image-container img {
    width: 100%;
    box-shadow: 0px 0px 5px #0000003b;
    /* border-radius: 5px; */
}

#summary .text-content {
    font-size: 1.3em;
    font-weight: 100;
    line-height: 1.2;
    padding: 2em;
}

#summary .text-content p {
    margin-bottom: 2rem;
}

#summary .text-content a {
    text-decoration: underline;
}

/* Services Section */
#services {
    background-color: #fff9eb;
    padding: 4rem 2rem;
    /* min-height: 0vh; */
}

.services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

}

#services img {
    width: 100%;
}

#services h2 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
}

#services .tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.2;
}

#services p {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}


#services ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding-left: 0;
    gap: 0.3rem;
}

#services li {
    margin-bottom: 0.5rem;
    font-size: 0.9em;
}

#services li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}


#services a {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.9em;
    color: var(--primary-color);
    font-weight: 600;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 5px;
}

#services a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}



/* contact section */
#contact {
    padding: 3rem 2rem;

}

#contact-content {
    display: flex;
    justify-content: center;

    align-items: center;
    gap: 1rem;
}

#contact-form {
    padding: 4rem 5%;
    border-radius: 8px;
    box-shadow: 0 0 20px #0000001a;
    flex-basis: 3;
    background-color: var(--white);
}

#contact-form h2 {
    font-size: 1.2em;
    font-weight: 600;
}


#contact-form p {
    font-size: 0.9em;
    margin-bottom: 1rem;
}

#contact-form label {
    display: block;
    padding: 0.5rem 0;
}


#contact-form button {
    margin-top: 1rem;
    color: var(--white);
    cursor: pointer;
}

#contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--primary-color);
    border-radius: 20px;
    color: var(--white);
    padding: 2rem;
    margin-left: -5%;
    text-align: center;
    box-shadow: 0 0 10px #00000048;
    max-width: 40%;
}

#contact-details #location a {
    display: inline-block;
    border: 1px solid var(--white);
    border-radius: 5px;
    color: var(--white);
    padding: 0.5rem 1.5rem;
}


#contact-details #location a:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
}


#location a i {
    font-size: 1em;
}

#contact-details i {
    padding: 0.3rem;
    font-size: 2em;
}
#contact-details #socials i {
    padding: 0.3rem;
    font-size: 1em;
}

#contact-details h3 {
    margin: 0.5rem 0;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--white);
    opacity: 0.8;
}

#contact-details div {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

#contact-details a {
    color: var(--white);
    padding: 0.3rem;
    display: inline-block;
}

#location address {

    font-size: 0.9em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

#contact-form textarea,
#contact-form input {
    width: 96%;
    padding: 10px;
    border: 1px solid #cccccc7a;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    border-radius: 5px;
    margin-bottom: 1rem;
}

#contact-form textarea:focus,
#contact-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

#contact-form label {
    font-weight: 600;
    font-size: 0.9em;

}

#contact-form button {
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    cursor: pointer;
}

#contact-form button:hover {
    background-color: var(--primary-color);
}



/* footer styles */
footer {
    display: flex;
    font-size: 0.9em;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 1rem;
}