@import url('https://fonts.googleapis.com/css2?family=Average&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #AA8819;
    --secondary-color: #414040;
    --tertiary-color: #ffffff;
    --fourth-color: #000000;
}

body {
    --font-script: "Style Script", cursive;
    --font-average: "Average", serif;
    --font-poppins: "Poppins", sans-serif;
    --font-volk: "Vollkorn", serif;
}

.container {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

ul,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--tertiary-color);
    font-family: var(--font-average);
    font-size: 20px;
    border-radius: 50px;
    margin-left: 45px;
}

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

.title1 {
    font-family: var(--font-script);
    font-size: 120px;
    color: var(--tertiary-color);
    margin-bottom: 16px;
}

.title2 {
    font-family: var(--font-volk);
    font-size: 64px;
    color: var(--fourth-color);
    margin-bottom: 8px;
}

.sub-title {
    font-family: var(--font-volk);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 56px;
}

/* Header Section */

.nav-item {
    padding: 0 15px;
}

.nav-link {
    color: var(--fourth-color);
    font-size: 20px;
    font-family: var(--font-average);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.icons {
    padding: 0 8px;
}

.mobile-menu {
    display: none;
    max-width: 20px;
}

/* Banner Section */

.banner-section {
    padding: 205px 0;
    text-align: center;
    background: url(../assets/contact-banner.png) no-repeat center/cover;
}

/* Map Section */

.map-section {
    padding: 100px 0 0;
}

.map {
    background: url(../assets/contact-map-image.png) no-repeat center/cover;
    min-height: 500px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    translate: transform 0.3s ease;
    overflow: hidden;
}

.map:hover {
    transform: scale(1.01);
}

.nav1 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(20px, 20px);
}

.nav2 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(20px, -20px);
}

/* Form Section */

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

.form-section form {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.form-section input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    padding: 12px 0;
    font-family: var(--font-average);
    font-size: 16px;
    background: transparent;
    outline: none;
}

.form-section .row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 20px;
    margin-bottom: 30px;
}

.form-section .address,
.form-section .message {
    margin-bottom: 30px;
}

#message {
    padding-bottom: 40px;
}

.form-section input[type="submit"] {
    width: auto;
    border: none;
    background: var(--primary-color);
    color: var(--tertiary-color);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-average);
    font-size: 16px;
    margin-top: 10px;
}

.form-section input[type="submit"]:hover {
    background: var(--secondary-color);
}

/* Bottom Banner Section */

.bottom-banner {
    background: url(../assets/bottom-banner.png) no-repeat center/cover;
    padding: 50px 0;
    text-align: center;
}

.bottom-banner p {
    font-family: var(--font-volk);
    font-size: 70px;
    color: var(--tertiary-color);
}

.bottom-banner .btn-primary {
    background-color: var(--tertiary-color);
    color: var(--fourth-color);
    margin-left: 0;
}

.bottom-banner .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}

/* Footer Section */

.footer-section {
    background-color: var(--secondary-color);
}

.footer-section .row {
    margin-bottom: 80px;
}

.ftr-hdr {
    margin-bottom: 48px;
    font-family: var(--font-volk);
    font-size: 40px;
    color: var(--tertiary-color);
}

.footer-section span {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
    cursor: pointer;
}

.ft-links {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}

.ft-links:hover {
    text-decoration: underline;
}

.subscribe-box {
    display: flex;
    max-width: 400px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.subscribe-box input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    background: transparent;
    color: white;
}

.subscribe-box input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-box input[type="submit"] {
    border: none;
    padding: 0 20px;
    background: var(--tertiary-color);
    color: var(--fourth-color);
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-box input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-icons img {
    cursor: pointer;
    margin-left: 16px;
}

.footer-btm {
    margin-bottom: 80px;
}

.ft-copyright,
.ft-copyright a {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}




/* Media Queries */

@media screen and (max-width:992px) {

    /* Header Section */

    .mobile-menu {
        display: flex;
        position: relative;
        z-index: 1002
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--tertiary-color);
        z-index: 1001;
        transition: right 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navbar-collapse ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .nav-items {
        margin: 15px 0;
    }

    .menu {
        position: relative;
        z-index: 1002;
        cursor: pointer;
    }

    .navbar .btn-primary {
        margin-left: 0;
    }

    /* When the active class is present, slide the menu to 0 */
    .navbar-collapse.active {
        right: 0;
    }

    .icon-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:768px) {

    .section-padding {
        padding: 50px 0;
    }

    .sub-title {
        margin-bottom: 20px;
    }

    /* Map Section */

    .map {
        min-height: 400px;
    }

    .nav1 img,
    .nav2 img {
        max-width: 120px;
    }

    /* Form Section */

    .form-section form {
        padding: 0 20px;
    }

    .form-section .row {
        --bs-gutter-x: 20px;
        margin-bottom: 20px;
    }

    .form-section input {
        font-size: 15px;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 50px;
    }

    /* Footer Section */

    .footer-section .row {
        row-gap: 40px;
        margin-bottom: 50px;
    }

    .ftr-hdr {
        font-size: 28px;
        text-align: center;
    }

    .first-col,
    .second-col,
    .third-col {
        text-align: center;
    }

    .first-col div {
        justify-content: center;
    }

    .footer-btm {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .subscribe-box {
        width: 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

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

@media screen and (max-width:576px) {

    /* Header Section */

    .navbar-brand img {
        max-width: 70px;
    }

    /* Map Section */

    .map {
        min-height: 300px;
    }

    .nav1 img,
    .nav2 img {
        max-width: 90px;
    }

    .nav1 {
        transform: translate(10px, 10px);
    }

    .nav2 {
        transform: translate(10px, -10px);
    }

    /* Form Section */

    .form-section {
        text-align: left;
    }

    .form-section .title2 {
        font-size: 36px;
        text-align: center;
    }

    .form-section .sub-title {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }

    .form-section form {
        margin-top: 20px;
    }

    .form-section input {
        font-size: 14px;
        padding: 10px 0;
    }

    #message {
        padding-bottom: 30px;
    }

    .form-section input[type="submit"] {
        width: 100%;
        text-align: center;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 36px;
        margin-bottom: 20px;
    }


    /* Footer Section */

    .ftr-hdr {
        font-size: 24px;
    }

    .footer-section span,
    .ft-links,
    .ft-copyright {
        font-size: 14px;
    }

    .subscribe-box input[type="email"] {
        padding: 10px 15px;
    }

    .subscribe-box input[type="submit"] {
        padding: 0 15px;
        font-size: 14px;
    }

    .social-icons img {
        margin-left: 10px;
        width: 20px;
    }
}


@media screen and (max-width:375px) {

    .title1 {
        font-size: 36px;
    }

    /* Form Section */

    .form-section .title2 {
        font-size: 32px;
    }

    /* Footer Section */

    .ftr-hdr {
        font-size: 20px;
    }

    .subscribe-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .subscribe-box input[type="submit"] {
        width: 100%;
        padding: 10px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}