/* =========================================
   KUNDU TRADERS
   COMPLETE WEBSITE STYLE
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #f8f5ec;
    color: #333;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}


/* =========================================
   HEADER
   ========================================= */

header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px 20px;
    text-align: center;
}

.site-logo {
    display: block;
    width: 900px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 5px;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 10px;
}

nav a {
    color: #1f3d2b;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 7px 0;
    border-bottom: 3px solid transparent;
    transition: 0.2s ease;
}

nav a:hover {
    color: #8b6b1f;
    border-bottom-color: #8b6b1f;
}

nav a.active {
    color: #8b6b1f;
    border-bottom: 2px solid #8b6b1f;
}


/* =========================================
   GENERAL CONTENT
   ========================================= */

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px;
}

h2 {
    color: #8b6b1f;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 25px;
}

h3 {
    color: #1f3d2b;
    font-size: 27px;
}

p {
    font-size: 17px;
}

a {
    color: #1f3d2b;
}


/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-section {
    max-width: 1250px;
    margin: 0 auto;
    padding: 65px 40px 60px;

    display: grid;
    grid-template-columns: 0.9fr 1.45fr;
    gap: 65px;

    align-items: start;
}


/* LEFT SIDE */

.contact-info h2 {
    margin: 0 0 25px;
    font-size: 39px;
}

.contact-info h3 {
    margin: 0 0 38px;
    font-size: 28px;
}


/* =========================================
   CONTACT ITEMS
   ========================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   LOCATION PIN
   ========================================= */

.location-icon {
    position: relative;
}

.location-icon::before {
    content: "";

    width: 34px;
    height: 34px;

    background: #e53935;

    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);

    position: absolute;

    top: 5px;
    left: 13px;
}

.location-icon::after {
    content: "";

    width: 11px;
    height: 11px;

    background: white;

    border-radius: 50%;

    position: absolute;

    top: 16px;
    left: 24px;
}


/* =========================================
   EMAIL ICON
   ========================================= */

.email-icon span {
    color: #1f5a42;
    font-size: 42px;
    line-height: 1;
}


/* =========================================
   CONTACT TEXT
   ========================================= */

.contact-text strong {
    display: block;

    font-size: 21px;

    margin-bottom: 7px;
}

.contact-text p {
    margin: 0;

    font-size: 18px;

    line-height: 1.65;

    text-align: left;
}

.contact-text a {
    color: #1f3d2b;

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;
}

.contact-text a:hover {
    color: #8b6b1f;
}


/* =========================================
   CONTACT MESSAGE
   ========================================= */

.contact-message {
    max-width: 570px;

    margin-top: 35px;

    font-size: 17px;

    line-height: 1.75;

    text-align: left;
}


/* =========================================
   GOOGLE MAP
   ========================================= */

.map-container {
    width: 100%;

    height: 540px;

    border-radius: 16px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;

    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    width: 100%;

    background: #1f5a42;

    color: white;

    text-align: center;

    padding: 25px 20px;

    margin-top: 25px;
}

footer p {
    margin: 0;

    font-size: 17px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    header {
        padding: 25px 20px 15px;
    }

    .site-logo {
        width: 850px;
        max-width: 100%;
    }

    nav {
        gap: 25px;
    }

    .contact-section {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 50px 25px;
    }

    .map-container {
        height: 480px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

    header {
        padding: 20px 15px 15px;
    }

    .site-logo {
        width: 800px;
        max-width: 100%;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 15px;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-item {
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        min-width: 45px;
    }

    .contact-text p {
        font-size: 16px;
    }

    .map-container {
        height: 380px;
        border-radius: 12px;
    }

    footer p {
        font-size: 14px;
    }
}
