@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 {
    background: url(../assets/banner.png) no-repeat center/cover;
    min-height: calc(100vh - 109px);
}

.banner-section .container {
    position: relative;
}

.banner-section .sub-title {
    color: var(--tertiary-color);
}

.banner-section .sub-title::after {
    content: "";
    display: block;
    height: 1px;
    width: 200px;
    background-color: var(--tertiary-color);
    margin: 25px 0 40px;
}

.banner-section .btn-primary {
    margin-left: 0;
}

/* Service Section */

.service-section p {
    font-family: var(--font-volk);
    font-size: 40px;
    color: var(--secondary-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.service1,
.service2,
.service3,
.service4 {
    overflow: hidden;
}

.service-section img {
    width: 100%;
    transition: transform 0.2s ease;
}

.service-section img:hover {
    transform: scale(1.03);
}

.service1 img {
    max-height: 558px;
}

/* About Section */

.about-section {
    position: relative;
    text-align: end;
}

.about-section h2::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    margin-right: 24px;
}

.about-content {
    max-width: 500px;
    margin-left: auto;
    margin-bottom: 36px;
    color: var(--secondary-color);
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-image {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 540px;
    width: 100%;
}

.about-section a {
    color: var(--primary-color);
    text-transform: uppercase;
}

.about-section a:hover {
    text-decoration: underline;
}

.about-section a::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    margin-left: 24px;
}


/* Menu Section */

.menu-section .title2::before {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-right: 20px;
}

.menu-section .sub-title {
    margin-left: 220px;
}

.menu-img {
    position: relative;
}

.menu-img .img-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.menu-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.menu-img:hover img {
    transform: scale(1.05);
}

.menu-name {
    font-family: var(--font-volk);
    font-size: 36px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 300px;
    width: 100%;
    padding: 16px 32px;
    background-color: var(--tertiary-color);
    box-shadow: 0px 4px 46.7px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    text-align: center;
}

/* Why Us Section */

.why-us-section .title2::before {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-right: 20px;
}

.why-us-section .sub-title {
    margin-left: 220px;
}

.why-us-section .row {
    row-gap: 60px;
}


.why-us-content div {
    margin-bottom: 16px;
}

.why-us-content img {
    margin-right: 20px;
}

.why-us-content span {
    font-family: var(--font-volk);
    font-size: 32px;
    color: var(--fourth-color);
}

.why-us-content p {
    font-family: var(--font-poppins);
    font-size: 20px;
    color: var(--secondary-color);
}


/* Testimonial Section */

.testimonial-section {
    position: relative;
}

.testimonial-section .review {
    max-width: 500px;
    text-align: center;
    font-family: var(--font-volk);
    font-size: 40px;
}

.review::after {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: block;
    margin: 25px auto 25px;
}

.testimonial-image {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 540px;
    width: 100%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.testimonial-image img:hover {
    transform: scale(1.03);
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

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

.user-info img {
    width: 60px;
    border-radius: 10px;
}


/* Our Team Section */

.our-team-section .title2::before {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-right: 20px;
}

.our-team-section .sub-title {
    margin-left: 220px;
}

.our-team-section .row {
    row-gap: 50px;
}

.member {
    position: relative;
    overflow: hidden;
}

.member img {
    width: 100%;
    margin-bottom: 30px;
}

.team .name {
    font-family: var(--font-volk);
    font-size: 32px;
    margin-bottom: 12px;
}

.team .post {
    font-family: var(--font-volk);
    font-size: 24px;
}

.team p {
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

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

    opacity: 0;
    transition: 0.3s ease;
}

.overlay img {
    width: 120px;
    /* adjust based on your design */
}

.member:hover .overlay {
    opacity: 1;
}

/* Gallery Section */

.gallery-section .title2::before {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-right: 20px;
}

.gallery-section .sub-title {
    margin-left: 220px;
}

.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.swiper-slide img:hover {
    transform: scale(1.03);
}

/* Blog Section */

.blog-section .title2::before {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: inline-block;
    margin-right: 20px;
}

.blog-section .sub-title {
    margin-left: 220px;
}

.news-image {
    margin-bottom: 24px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.news-image img:hover {
    transform: scale(1.03);
}

.news-date {
    height: 70px;
    width: 64px;
    background-color: var(--secondary-color);
    font-family: var(--font-volk);
    font-size: 20px;
    color: var(--tertiary-color);
    padding: 10px;
    margin-bottom: 24px;
}

.news-head {
    margin-bottom: 16px;
    font-family: var(--font-volk);
    color: var(--fourth-color);
    font-size: 24px;
    max-width: 280px;
}

.news-desc {
    font-family: var(--font-poppins);
    font-size: 20px;
    color: var(--secondary-color);
    max-width: 280px;
    margin-bottom: 20px;
}

.news a {
    color: var(--primary-color);
    text-transform: uppercase;
}

.news a:hover {
    text-decoration: underline;
}

.news a::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    margin-left: 24px;
}

/* 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;
    }

    /* About Section */

    .about-image {
        max-width: 400px;
        width: 100%;
    }


}

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

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

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

    /* Service Section */

    .service1 {
        margin-bottom: 24px;
    }

    .service3 {
        margin-bottom: 24px;
    }

    /* About Section */

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

    .about-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        position: static;
        margin: 0 auto;
    }

    .about-section h2::before {
        display: none;
    }

    .about-section a::after {
        display: none;
    }

    .about-content {
        margin: 0 auto 20px;
    }

    .about-section a {
        margin-bottom: 20px;
    }

    /* Menu Section */

    .menu-section .title2 {
        text-align: center;
    }

    .menu-section .sub-title {
        margin-left: 0;
        text-align: center;
    }

    .menu-section .title2::before {
        display: none;
    }

    .menu-img {
        margin-bottom: 50px;
    }

    .menu-name {
        font-size: 20px;
        max-width: 240px;
        width: 100%;
    }

    /* Why Us Section */

    .why-us-section .row {
        row-gap: 35px;
    }

    .why-us-section .title2 {
        text-align: center;
    }

    .why-us-section .sub-title {
        margin-left: 0;
        text-align: center;
    }

    .why-us-section .title2::before {
        display: none;
    }

    .why-us-content img {
        margin-right: 16px;
    }

    .why-us-content span {
        font-size: 24px;
    }

    .why-us-content p {
        text-align: center;
        font-size: 16px;
    }

    /* Testimonial Section */

    .testimonial-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-section p {
        margin: 0 auto;
    }

    .testimonial-image {
        position: static;
        max-width: 100%;
        margin-top: 30px;
    }

    .testimonial-content {
        text-align: center;
        max-width: 100%;
    }

    .testimonial-section .review {
        font-size: 28px;
    }

    .testimonial-controls {
        justify-content: center;
        gap: 20px;
    }

    /* Our Team Section */

    .our-team-section .row {
        row-gap: 35px;
    }

    .our-team-section .title2 {
        text-align: center;
    }

    .our-team-section .sub-title {
        margin-left: 0;
        text-align: center;
    }

    .our-team-section .title2::before {
        display: none;
    }

    .team .name {
        font-size: 24px;
    }

    .team .post {
        font-size: 18px;
    }

    /* Gallery Section */

    .gallery-section .title2 {
        text-align: center;
    }

    .gallery-section .sub-title {
        margin-left: 0;
        text-align: center;
    }

    .gallery-section .title2::before {
        display: none;
    }

    /* Blog Section */

    .blog-section .title2 {
        text-align: center;
    }

    .blog-section .sub-title {
        margin-left: 0;
        text-align: center;
    }

    .blog-section .title2::before {
        display: none;
    }

    .blog-section .row {
        row-gap: 35px;
    }

    .news {
        text-align: center;
    }

    .news-date {
        margin: 0 auto 20px;
    }

    .news-head,
    .news-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .news a::after {
        display: none;
    }

    /* 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) {

    .title2 {
        font-size: 40px;
    }

    .sub-title {
        font-size: 20px;
    }

    /* Header Section */

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

    /* Banner Section */

    .title1 {
        font-size: 50px;
    }

    /* Service Section */

    .service-section p {
        font-size: 24px;
    }

    /* About Section */

    .sub-title,
    .about-content,
    .about-section a {
        font-size: 18px;
    }

    .about-image {
        max-width: 280px;
        width: 100%;
    }

    /* Why Us Section */

    .why-us-section .row {
        row-gap: 30px;
    }

    /* Testimonial Section */

    .testimonial-section .review {
        font-size: 22px;
        line-height: 1.4;
    }

    .user-info img {
        width: 50px;
    }

    .user-info h4 {
        font-size: 16px;
    }

    .testimonial-controls button {
        width: 40px;
        height: 40px;
    }

    /* Our Team Section */

    .our-team-section .row {
        row-gap: 30px;
    }

    .member img {
        margin-bottom: 20px;
    }

    .team .name {
        font-size: 20px;
    }

    .team .post {
        font-size: 16px;
    }

    /* Gallery Section */

    .gallery-section .sub-title {
        font-size: 20px;
    }

    /* Blog Section */

    .blog-section .row {
        row-gap: 30px;
    }

    .news-head {
        font-size: 20px;
    }

    .news-desc {
        font-size: 16px;
    }

    .news-date {
        height: 60px;
        width: 55px;
        font-size: 16px;
        padding: 8px;
    }

    /* 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;
    }

    .title2 {
        font-size: 32px;
    }

    /* Testimonial Section */

    .testimonial-section .review {
        font-size: 18px;
    }

    .review::after {
        width: 120px;
    }

    /* Gallery Section */

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

    /* Blog Section */

    .news-head {
        font-size: 18px;
    }

    .news-desc {
        font-size: 14px;
    }

    /* 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);
    }

}