/*=================Main Universal Resets================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/*==============Header Styles============*/
.header {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    padding: 18px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 25px;
    margin-right: 25px;
}

.menuBar {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-left: -0.8rem;
}

.menu_item {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    color: #000000;
}

.menu_item:hover{
    color: #086212;
}

/*==============CONTACT HERO==============*/
.contact-hero {
    text-align: center;
    padding: 50px 24px 30px 24px;
}

.contact-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;

    color: #111111;

    line-height: 1.2;

    max-width: 1000px;

    margin: 0 auto;
}

.contact-subheading {
    max-width: 850px;

    margin: 24px auto 0 auto;

    line-height: 1.8;
    font-size: 1.1rem;

    color: #444444;

    padding: 0 20px;
}

/*==============CONTACT CARD==============*/
.contact-wrapper {
    padding: 20px 24px 80px 24px;
}

.contact-card {
    background-color: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    padding: 32px;

    max-width: 1000px;

    margin: 0 auto;

    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.contact-card h2 {
    font-size: 1.8rem;

    margin-bottom: 28px;

    color: #111111;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.contact-icon {
    font-size: 1.4rem;
}

.contact-item p {
    font-size: 1rem;

    color: #444444;

    line-height: 1.6;
}

/*==============BUTTON==============*/
.email-button {
    display: inline-block;

    margin-top: 34px;

    border: none;
    border-radius: 10px;

    color: white;

    background: linear-gradient(
        135deg,
        rgb(4,108,71),
        rgb(3,85,56)
    );

    padding: 14px 36px;

    font-weight: bold;
    font-size: 1.05rem;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(4, 108, 71, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.email-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(4, 108, 71, 0.25);
}

/*==============SOCIAL SECTION==============*/
.social-section {
    width: 100%;

    padding: 20px 24px 90px 24px;

    text-align: center;
}

.social-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);

    color: #111111;

    margin-bottom: 20px;

    font-weight: bold;
}

.social-text {
    max-width: 750px;

    margin: 0 auto;

    line-height: 1.8;

    font-size: 1.1rem;

    color: #555555;

    padding: 0 20px;
}

.facebook-button {
    display: inline-block;

    margin-top: 34px;

    border: none;
    border-radius: 10px;

    color: white;

    background: linear-gradient(
        135deg,
        
        #086212
    );

    padding: 14px 36px;

    font-weight: bold;
    font-size: 1.05rem;

    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.facebook-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.25);
}

/*==============FOOTER==============*/
.main-footer {
    background-color: #1a1d20;

    color: #ffffff;

    padding: 70px 24px 30px 24px;

    text-align: center;
}

.footer-info {
    max-width: 800px;
    margin: 0 auto;
}

.footer-info h4 {
    font-size: 1.5rem;

    margin-bottom: 16px;

    color: #28a745;
}

.footer-info p {
    font-size: 1rem;

    color: #cccccc;

    line-height: 1.7;

    margin-bottom: 16px;
}

.footer-contact {
    font-weight: bold;
}

.footer-contact a {
    color: #28a745;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 40px;

    border-top: 1px solid #2d3238;

    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;

    color: #868e96;
}

/*================= TABLETS =================*/
@media (min-width: 768px) {

    .header {
        padding: 24px 32px;
    }

    .logo {
        height: 34px;
    }

    .menuBar {
        gap: 24px;
    }
}

/*================= LAPTOPS =================*/
@media (min-width: 1024px) {

    .header {
        display: flex;
        flex-direction: column;
    }

    .logo {
        height: 80px;
    }

    .menu_item {
        font-size: 3rem;
        margin-top: 1rem ;
    }

    .contact-wrapper {
        padding: 40px 40px 100px 40px;
    }
}

/*================= LARGE DESKTOPS =================*/
@media (min-width: 1440px) {

    .contact-subheading {
        max-width: 950px;
        font-size: 1.2rem;
    }

    .menu_item{
        margin-top: 1rem;
    }
}