/* ===================================
   JWC Catering Website - Clean Styles
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e67e22;
    --hover-color: #E4BB85;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-bg: #fcf7f0;
    --white: #ffffff;
    --gray: #7f8c8d;
    --black: #000000;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 0;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

nav.navbar.scrolled {
    background:rgb(0 0 0);
}

.navbar-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.nav-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    /* flex: 1 0 auto; */
    text-align: center;
    width: 16%;
}

.logo a{
    display: inline-block;
}

.logo img {
    margin: 0 auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

nav.navbar.scrolled  .logo img {
    height: 100px;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 44%;
    gap: 10px;
}

.call_btn {
    background: rgba(228, 187, 133, 0.25);
    border-radius: 15px;
    color: var(--white);
    min-width: 255px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px;
    transition: var(--transition);
}  

.call_btn:hover,
.get_quote_btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    color: var(--white);
}

.get_quote_btn {
    background: #FFFFFF;
    border-radius: 15px;
    min-width: 153px;
    height: 56px;
    padding: 15px;
    text-align: center;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 56px;
    text-transform: uppercase;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    width: 40%;
}

.nav-menu a {
    color: var(--white);
    transition: var(--transition);
    position: relative;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--hover-color);
}

/*.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}*/

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 38px;
    line-height: normal;
    cursor: pointer;
    color: #fff;
    height: auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/v9_204.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-top: 130px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/*.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}*/

.home .hero::before{
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 966px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 0px;
    line-height: 80px;
    text-align: center;
    text-transform: uppercase;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
}

.home .hero h1{
    margin-bottom: 90px;
    font-size: 80px;
    line-height: 107px;
}

.hero p {
    font-weight: 700;
    font-size: 25px;
    line-height: 33px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 20px 40px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 16px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    max-width: 270px;
}

.btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

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

/* Stats Section */
.stats {
    padding: 60px 0;
    min-height: 512px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
}

.stats .container {
    width: 100%;
}

.stats-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.stats-left-text {
    min-width: 550px;
}

.stats-left-text h3 {
    font-style: normal;
    font-weight: 800;
    font-size: 27px;
    line-height: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin:0px;
}

.stats-left-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin:0px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px;
    text-align: center;
    width: 100%;
}

.stat-item {
    border: 1px solid #FFFFFF;
    min-height: 155px;
    width: 155px;
    margin-left: auto;
    padding: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.stat-item h3 {
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 47px;
    /* identical to box height */
    text-transform: uppercase;
    color: #FFFFFF;
}

.stat-item p {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}


.vegetarian-catering-section .section-title{
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #000000;
    text-align: left;
    margin-bottom: 45px;
}

.events-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.event-card {
    width: 100%;
    min-height: 290px;
    padding: 30px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center;
}

.event-card h4{
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 43px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}

.why-choose-section {
    padding-top: 0px;
    padding-bottom: 140px;
}

.why-choose-section .top-heading h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 45px;
    text-align: center;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #635035;
    margin-top: 10px;
}

.layer-top {
    position: absolute;
    right: 0;
    top: -50px;
}



/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Events Section */

.event-section{
    padding-bottom: 115px;
}

.event-section .top-heading h2 {
    display: inline-block;
    color: #000;
}

.masonry {
    column-count: 3;          /* number of columns */
    column-gap: 15px;  
    margin: auto;
}



/* Masonry Items */
.masonry-item {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 60px;
    overflow: hidden;
    break-inside: avoid;      /* important for masonry */
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.4s ease;
}

/* variable heights */
.masonry-item.tall img {
    height: 425px;
    object-fit: cover;
}

.masonry-item:not(.tall) img {
    height: 518px;
    object-fit: cover;
}

/* Overlay Label */
.masonry-item .label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8);
    pointer-events: none;
}
.masonry-item:hover img {
    transform: scale(1.08);
    filter: brightness(70%);
}


/* About Section */
.about-content {
    display: flex;
    gap: 70px;
    justify-content: space-between;
}

.about-image {
    min-width: 535px;
}

.about-text {
    width: 100%;
    padding-top: 30px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.layer-image {
    position: absolute;
    right: 0;
    bottom: 50px;
    z-index: -1;
}

.grid-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    position: relative;
}

.grid-row:after{
    content: "";
    position: absolute;
    left:0;
    right:0;
    margin:0 auto;
    background:rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 1px;
}

.grid-col {
    width: 100%;
}

.grid-col:last-child {
    padding-left: 40px;
}

.grid-col h3{
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 33px;
    text-transform: uppercase;
    color: #635035;
    margin-top:0px;
    margin-bottom: 40px;
}

.grid-col h4{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: #000000;
    margin-top:0px;
    margin-bottom: 40px;
}

.grid-col p{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-transform: lowercase;
    color: rgba(0, 0, 0, 0.7);
    margin:0px;
}

.Quote-box {
    width: 100%;
    margin-top: 70px;
}

.Quote-box h3{
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 33px;
    text-transform: uppercase;
    color: #635035;
    margin-top: 0px;
    margin-bottom: 70px;
}

.Quote-box p{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin:0px;
}

.Quote-box p strong{
    font-size: 20px;
    font-weight: 500;
}

.who-we-section {
    padding-bottom: 150px;
}


/* Features */

.why-choose-section .top-heading {
    position: relative;
}

.why-choose-section .top-heading img {
    position: absolute;
    right: 0;
    bottom: -50%;
}

.feature-block {
    width: 100%;
    padding: 0px 20px;
    position: relative;
    z-index: 1;
    margin-top: 150px;
}

.why-choose-section .layer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    border: 8px solid transparent;
    border-image: linear-gradient(180deg, #635035 0%, #F6D360 100%);
    border-image-slice: 1;
    padding: 40px 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.feature-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    color: var(--black);
}

.feature-item p {
   font-style: normal;
   font-weight: 500;
   font-size: 15px;
   line-height: 23px;
   text-align: center;
   text-transform: capitalize;
   color: rgba(0, 0, 0, 0.7);
}

/* Gallery */
.gallery-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 60px;
    row-gap: 40px   ;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */

.testimonial-section {
    padding-top: 20px;
    padding-bottom: 140px;
}

.testimonial-section-inner {
    width: 100%;
    max-width: 710px;
}

.testimonial-section .top-heading {
    max-width: 100%;
    margin-bottom: 40px;
}

.testimonial-section .top-heading h2 {
    font-size: 40px;
    line-height: 65px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #635035;
    text-align: left;
}

.testimonial {
    width: 100%;
    padding-bottom: 70px;
}

.testimonial p {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.6);
}

.testimonial-author {
    font-weight: 700;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    color: #000000;
    margin-top: 30px;
}

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

.right-image {
    position: absolute;
    bottom: -140px;
    right: 0;
}

.testimonial-section .layer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.testimonial .slick-arrow {
    position: absolute;
    bottom: -40px;
    padding: 5px;
    background-color: #635035;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    border: 0px;
}

.testimonial .slick-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial .slick-arrow:hover {
    background-color: #000000;
}

.testimonial .slick-arrow.slick-next {
    left: 55px;
}
.testimonial .slick-arrow.slick-next img{
    transform: rotate(180deg);
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-category {
    padding: 15px 30px;
    background: var(--light-bg);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-category:hover,
.menu-category.active {
    background: var(--primary-color);
    color: var(--white);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.menu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.menu-item ul {
    list-style: none;
}

.menu-item li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--gray);
}

.menu-item li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-section {
    background: var(--light-bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 0 20px;
    background: url('../images/footer-bg.png') center/cover no-repeat;
}

.footer .container {
    max-width: 1100px;
}

.footer-content {
    display: block;
    margin-bottom: 0px;
    max-width: 530px;
    margin-left: auto;
    width: 100%;
}

.footer-section {
    width: 100%;
    margin-bottom: 50px;
}

.footer-section:last-child {
    margin-bottom: 0px;
}

.footer-section h3 {
    font-size: 24px;
    padding-bottom: 7px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3:after{
    content: "";
    position: absolute;
    right:0;
    bottom: 0;
    background:#FFFFFF;
    height: 1px;
    width: 90%;
}

.footer-section ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style-position: inside;
    padding-left: 5px;
}

.footer-section ul li {
    break-inside: avoid; /* Prevent items splitting between columns */
    padding: 2px 0;
}

.footer-section a {
    color: var(--white);
    transition: var(--transition);
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.contact-detail {
    width: 100%;
    margin-top: 15px;
}

.contact-detail span {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
    font-size: 16px;
    color: #fff;
}

.contact-detail span:last-child{
    margin-bottom: 0px;
}
.contact-detail span img {
    display: block;
    min-width: 20px;
}

.top-heading {
    width: 100%;
    margin:0 auto;
    max-width: 1040px;
    margin-bottom: 65px;
    text-align: center;

}

.top-heading p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 1px solid #E4BB85;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.top-heading h2{
    font-weight: 500;
    font-size: 52px;
    line-height: 69px;
    text-align: center;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #635035;
}

/***** Service Page Css ******/

.service-event-section .top-heading h2{
    font-style: normal;
    font-weight: 500;
    font-size: 45px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}

.service-event-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 35px;
    row-gap: 60px;
}

.service-event-col {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-event-col a {
    display: block;
    border-radius: 50px;
    overflow: hidden;
}

.service-event-col img{
    display: block;
    transition: 0.4s ease;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-event-col:hover img {
    transform: scale(1.08);
    filter: brightness(70%);

}

.service-event-col h2{
    font-style: normal;
    font-weight: 500;
    font-size: 43px;
    line-height: 57px;
    text-transform: uppercase;
    color: #000000;
    margin:0px;
}

/***** Gallery Page Css ******/

.gallery-block {
    padding: 0px !important;
}

.gallery-block-inner {
    width: 100%;
    padding: 35px;
    padding-bottom: 100px;
    margin: 0 auto;
    max-width: 1180px;
}

.divider-box {
    text-align: center;
    width: 100%;
}

.divider-box span {
    margin: 0 auto;
    position: relative;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 15px;
}

.divider-box span:before,
.divider-box span:after{
    content: "";
    display: inline-block;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-bottom: solid 1px #E4BB85;
}

/***** Our Menu Page Css ******/

section.section.menu-block {
    padding: 0px !important;
}

.menu-col {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
}

.menu-col:nth-child(odd) {
    padding-bottom: 0px;
}

.menu-col:first-child {
    padding-top: 50px;
}

.menu-col:nth-child(even) {
    background: rgba(228, 187, 133, 0.17);
}

.menu-col:last-child {
    padding-bottom: 50px;
    padding-top: 0px;
}

.menu-col-inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
}

.menu-col:nth-child(even) .menu-col-inner {
    flex-direction: row-reverse;
}

.menu-col-left {
    width: 100%;
}

.menu-col-left img {
    width: 100%;
}

.menu-col-right {
    min-width: 303px;
    text-align: center;
}

.menu-col-right h3{
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    text-transform: capitalize;
    color: #E4BB85;
    margin:0px;
}

/***** Contact Page Css ******/

.conatact-info {
    padding: 50px 0px 0px !important;
}

.contact-info-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.contact-info-left {
    width: 100%;
    max-width: 672px;
}

.contact-info-left h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 60px;
    color: #E4BB85;
    margin-bottom: 20px;
}

.contact-info-left p{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: rgba(0, 0, 0, 0.7);
}

.contact-info-left-right {
    min-width: 360px;
}

.contact-form-section {
    background: rgba(228, 187, 133, 0.13);
    padding: 60px 0px;
}

.contact-form-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact-form-left, .contact-form-right {
    width: 50%;
}

.contact-form-left {
    background: #FFFFFF;
    box-shadow: 7px 7px 23px rgba(0, 0, 0, 0.25);
    border-radius: 15px 70px;
    padding: 50px 40px;
    margin-top: -130px;
}

.contact-form-left h2{
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 47px;
    color: #E4BB85;
    margin-bottom: 25px;
}

.contact-form-left .form-group input,
.contact-form-left .form-group select,
.contact-form-left .form-group textarea {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 28px;
    padding: 16px 30px;
    line-height: normal;
    border: 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.contact-form-left .form-footer {
    text-align: center;
}

.contact-form-left .form-footer [type="submit"]{
    background: #E4BB85;
    border-radius: 28px;
    font-style: normal;
    font-weight: 800;
    font-size: 13px;
    line-height: 17px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.contact-form-right h3{
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 47px;
    color: #E4BB85;
    margin-bottom: 20px;
}

.contact-detail span span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    background: #FFFFFF;
    height: 50px;
    border-radius: 100px;
    padding: 15px;
    object-fit: contain;
    width: auto;
}

.contact-form-right .contact-detail span {
    color: #000;
}

.contact-form-right .contact-detail span img {
    display: block;
    min-width: 15px;
}

/***** About Page Css ******/

section.section.about-section {
    padding: 35px 0px !important;
    z-index: 1;
}

.about-section .layer-middle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.about-section .layer-bottom {
    position: absolute;
    right: 0;
    bottom: -50px;
    z-index: -1;
}

.about-section-inner {
    width: 100%;
    padding-left: 100px;
}

.about-content-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.about-content-row:nth-child(even){
    flex-direction: row-reverse;
}

.about-content-left {
    width: 50%;
    max-width: 545px;
}

.about-content-left img {
    width: 100%;
    max-width: 200px;
    margin-top: 30px;
}

.about-content-left h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 1px solid #E4BB85;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 60px;
}

.about-content-left h2{
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 67px;
    text-transform: uppercase;
    color: #635035;
    margin: 0px;
    max-width: 491px;
}

.about-content-right {
    width: 50%;
    text-align: center;
    max-width: 573px;
    position: relative;
}

.about-content-right img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 550px;
    object-fit: cover;
}

.about-content-right p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 0px;
}

.about-content-row:nth-child(even) .about-content-left {
    max-width: 100%;
    width: 100%;
    padding-top: 200px;
}

.about-content-row:nth-child(even) .about-content-right {
    max-width: 416px;
    width: 100%;
    min-width: 416px;
}

section.section.about-info {
    padding-top: 130px !important;
    padding-bottom: 30px !important;
}

.about-info-grid {
    width: 100%;
    display: grid;
    gap: 0px;
    justify-content: center;
    text-align: center;
    grid-template-columns: repeat(3,1fr);
}

.about-info-col {
    width: 100%;
    border-right: 1px solid #E4BB85;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-info-col:last-child {
    border-right: 0px;
}

.about-info-col h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 90px;
    line-height: 120px;
    text-align: center;
    text-transform: uppercase;
    color: #E4BB85;
    padding-bottom: 10px;
    border-bottom: 1px solid #E4BB85;
    display: inline-block;
    margin-bottom: 40px;
}

.about-info-col h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 23px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

.about-info-col p{
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
}

/***** Wedding Page Css ******/

section.section.wedding-intro {
    padding-top: 30px;
    padding-bottom: 0px;
    z-index: 1;
}

section.section.wedding-intro .layer-bottom-image {
    position: absolute;
    bottom: -76px;
    left: 0;
    max-width: 250px;
}

.wedding-intro-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 75px;
    margin: 0 auto;
    max-width: 1140px;
}

.wedding-intro-left {
    width: 100%;
    padding-bottom: 50px;
}

.wedding-intro-right {
    max-width: 388px;
    min-width: 388px;
}

.wedding-intro-right img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.wedding-intro-left h5 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.wedding-intro-left h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80%;
    background: #E4BB85;
    height: 1px;
}

.wedding-intro-left h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 67px;
    text-transform: uppercase;
    color: #635035;
    margin-bottom: 30px;
    margin-top: 25px;
}

.wedding-intro-left p{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: #000000;
}

section.section.wedding-grid-section {
    padding-top: 145px;
    padding-bottom: 100px;
}

.wedding-grid-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 85px;
}

.wedding-grid-col {
    text-align: center;
    width: 100%;
}

.wedding-grid-col img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 35px;
}

.wedding-grid-col h2{
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 53px;
    text-align: center;
    text-transform: uppercase;
    color: #635035;
    margin-bottom: 35px;
    padding-bottom: 25px;
    position: relative;
}

.wedding-grid-col h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 150px;
    background: #E4BB85;
    height: 1px;
}

.wedding-grid-col p{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

section.section.wedding-gallery-section {
    padding-top: 30px;
    padding-bottom: 0px;
}

.gallery-slider .slick-list.draggable {
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallery-slider-item {
    padding: 0px 20px;
    transition: ease-in-out 0.5s;
}

.gallery-slider-item:nth-child(even) {
    transform: translateY(-50px);
}

.gallery-slider-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    background-color: #E4BB85;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    border: 0px;
}

.gallery-slider .slick-arrow.slick-prev {
    left: -35px;
}

.gallery-slider .slick-arrow.slick-next {
    right: -35px;
}

/***** Menu Party Page Css ******/


section.section.menu-party-intro {
    padding-top: 45px;
    padding-bottom: 45px;
}

section.section.menu-party-intro p{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: rgb(0 0 0 / 70%);
}

section.section.menu-party-intro p a{
    color: #E4BB85;
    text-decoration: none;
}

section.section.variety-section {
    padding-top: 0px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: top !important;
}

.variety-section-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
}

.variety-section-heading h2{
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #000000;
}

.variety-grid-block {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 100px;
}

.variety-col-item {
    width: 100%;
}

.variety-col-item h3 {
    font-weight: 700;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
    color: #E4BB85;
    margin-top: 0px;
    margin-bottom: 50px;
    padding-left: 10px;
}

.variety-col-item ul {
    list-style: none;
}

.variety-col-item ul li {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: normal;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.7);
}

.variety-col-item ul li:last-child {
    margin-bottom: 0px;
}
/* Responsive Design */

@media(min-width:1025px){
    .home .hero {
        min-height: 800px;
    }
    .hero {
        min-height: 532px;
    }
    .about-content-right p {
        position: absolute;
    }

}

@media(max-width:1390px){
    .navbar {
        padding: 10px 0;
    }

    .nav-menu {
        gap:10px;
        flex-wrap: wrap;
        width: 41%;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo {
        width: 17%;
    }

    .nav-right {
        width: 40%;
    }

    .hero p {
        font-size: 20px;
        line-height: 28px;
    }

    .home .hero h1{
        margin-bottom: 70px;
        font-size: 52px;
        line-height: 80px;
    }

    .top-heading h2 {
        font-size: 36px;
        line-height: 65px;
    }

    .grid-col:last-child {
        padding-left: 20px;
    }

    .about-content {
        gap: 40px;
    }

    .about-image {
        min-width: 450px;
    }

    .Quote-box h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 50px;
    }

    .who-we-section {
        padding-bottom: 110px;
    }

    .stats-inner {
        gap: 30px;
    }

    .stats-left-text {
        min-width: 350px;
    }

    .stats-grid {
        gap: 30px;
    }

    .stats {
        min-height: 412px;
    }

    .event-card h4 {
        font-size: 24px;
        line-height: 35px;
    }

    .event-card {
        min-height: 230px;
        padding: 25px;
    }

    .why-choose-section .top-heading h2 {
        font-size: 25px;
        line-height: 35px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .feature-item {
        padding: 30px 24px;
    }

    .why-choose-section {
        padding-bottom: 80px;
    }

    .testimonial-section .top-heading h2 {
        font-size: 33px;
        line-height: 52px;
    }

    .testimonial p {
        font-size: 16px;
        line-height: 28px;
    }

    .service-event-col img {
        height: 450px;
    }

    .service-event-col h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .service-event-section .top-heading h2 {
        font-size: 36px;
        line-height: 55px;
    }

}


@media(max-width:1199px){
    .logo {
        text-align: left;
        width: 33%;
    }

    .logo img {
        max-width: 150px;
    }

    .nav-right {
        display: none;
    }

    .navbar {
        padding: 15px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 113px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }
    .nav-menu a {
        color: #000;
    }
    nav.navbar.scrolled .logo img {
        height: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .gallery-slider .slick-arrow.slick-next {
        right: 0px;
    }

    .gallery-slider .slick-arrow.slick-prev {
        left: 0px;
    }

    .wedding-grid-row {
        gap: 65px;
    }

    .wedding-grid-col h2 {
        font-size: 30px;
        line-height: 43px;
    }

}

@media(max-width:1024px){
    .home .hero {
        height: 85vh;
        padding-top: 115px;
    }
    .hero {
        min-height: 500px;
        padding-top: 115px;
    }
}

@media(max-width:991px){

    .hero {
        min-height: 400px;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 52px;
    }

    .home .hero h1{
        margin-bottom: 65px;
        font-size: 48px;
        line-height: 65px;
    }

    .section {
        padding: 50px 0;
    }

    .top-heading {
        margin-bottom: 40px;
    }

    .top-heading p {
        font-size: 18px;
        line-height: 25px;
        letter-spacing: 0.20em;
    }

    .top-heading h2 {
        font-size: 28px;
        line-height: 55px;
        letter-spacing: 0.20em;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        padding-top: 0px;
    }

    .about-image img {
        width: 100%;
    }

    .Quote-box {
        margin-top: 50px;
        max-width: 500px;
    }

    .Quote-box h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .masonry { 
        column-count: 2; 
    }

    .masonry-item:not(.tall) img {
        height: 350px;
    }

    .masonry-item .label {
        font-size: 24px;
    }

    .masonry-item.tall img {
        height: 300px;
        object-fit: cover;
    }

    .stats {
        min-height: auto;
        flex-direction: column;
    }

    .stats-inner {
        gap: 30px;
        flex-direction: column;
    }

    .stats-left-text {
        width: 100%;
    }

    .stat-item {
        min-height: 155px;
        width: 100%;
    }

    .events-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-choose-section {
        padding-top: 0px;
    }

    .why-choose-section .top-heading img {
        bottom: -80%;
    }

    .testimonial-section {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .right-image {
        position: initial;
    }

    .testimonial-section .layer-bottom ,
    .why-choose-section .layer-top{
        display: none;
    }

    .testimonial {
        padding-bottom: 40px;
    }

    .footer-section a {
        font-size: 16px;
        line-height: 28px;
    }

    .footer-content {
        max-width: 400px;
    }

    .service-event-col img {
        height: 250px;
    }

    .service-event-grid {
        column-gap: 20px;
        row-gap: 40px;
    }

    .service-event-col {
        gap: 40px;
    }

    .service-event-col h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .menu-col-right {
        min-width: 200px;
    }

    .menu-col-right h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .contact-info-inner {
        gap: 40px;
    }

    .contact-info-left-right {
        min-width: 250px;
    }

    .contact-info-left h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .contact-info-left p {
        font-size: 18px;
        line-height: 26px;
    }

    .contact-form-left {
        margin-top: 0;
    }

    .contact-form-inner {
        gap: 30px;
    }

    .contact-form-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .contact-form-left {
        padding: 35px 25px;
    }

    .contact-form-right h3 {
        font-size: 28px;
        line-height: 35px;
    }

    .about-section-inner {
        width: 100%;
        padding-left: 0px;
    }

    .about-content-left h5 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .about-content-left h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .about-content-right img {
        height: 450px;
    }

    .about-content-right p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }

    .about-content-row:nth-child(even) .about-content-left {
        padding-top: 0;
    }

    .about-info-col {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-info-col h2 {
        font-size: 55px;
        line-height: 84px;
        margin-bottom: 20px;
    }

    .about-info-col h3 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .about-info-col p {
        font-size: 14px;
        line-height: 23px;
    }

    .wedding-intro-inner {
        gap: 50px;
    }

    .wedding-intro-left h5 {
        font-size: 16px;
        line-height: 23px;
        letter-spacing: 0.20em;
    }

    .wedding-intro-left h2 {
        font-size: 33px;
        line-height: 44px;
    }

    .wedding-intro-left p {
        font-size: 16px;
        line-height: 26px;
    }

    section.section.wedding-intro .layer-bottom-image {
        bottom: -90px;
        max-width: 200px;
    }

    .wedding-grid-row {
        gap: 35px;
    }

}

@media (max-width: 767px) {
    .container,.nav-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 45px;
    }

    .home .hero h1{
        margin-bottom: 50px;
        font-size: 28px;
        line-height: 45px;
    }

    .hero p {
        font-size: 15px;
        line-height: 22px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .top-heading h2 {
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 0.10em;
    }

    .about-image {
        min-width: auto;
    }

    .btn {
        font-size: 16px;
    }

    .logo img {
        max-width: 150px;
        width: 100%;
    }

    .logo a {
        display: block;
    }

    .nav-menu {
        top: 95px;
    }

    .grid-row {
        grid-template-columns: repeat(1,1fr);
        gap: 40px;
    }

    .grid-row:after{
        display: none;
    }

    .grid-col:last-child {
        padding-left: 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.4);
        padding-top: 40px;
    }

    .layer-image {
        right: 0;
        bottom: 0px;
        z-index: -1;
        max-width: 100px;
    }

    .Quote-box h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .masonry-item.tall img {
        height: 350px;
        object-fit: cover;
    }

    .stats {
        padding: 50px 0;
    }

    .stats-left-text {
        min-width: auto;
    }

    .stats-left-text h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .stats-left-text p {
        font-size: 16px;
        line-height: 27px;
    }

    .stats-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .vegetarian-catering-section .section-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .event-card h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .why-choose-section .top-heading img {
        position: initial;
        text-align: center;
        margin: 30px auto 0px;
    }

    .feature-block {
        margin-top: 0px;
    }

    .testimonial-section .top-heading h2 {
        font-size: 28px;
        line-height: 44px;
    }

    .testimonial p {
        font-size: 15px;
        line-height: 26px;
    }

    .testimonial-author {
        font-size: 17px;
        line-height: 30px;
    }

    .footer-section a {
        font-size: 12px;
        line-height: 18px;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 20px;
        padding-bottom: 7px;
        margin-bottom: 20px;
    }

    .contact-detail span {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .contact-detail span img {
        min-width: 18px;
    }

    .home .hero {
        padding-top: 100px;
    }

    .hero {
        min-height: 300px;
        padding-top: 88px;
    }
    
    .service-event-section .top-heading h2 {
        font-size: 24px;
        line-height: 40px;
    }

    .service-event-grid {
        row-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    .service-event-col {
        gap: 20px;
    }

    .service-event-col h2 {
        font-size: 22px;
        line-height: 35px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-block-inner {
        padding: 35px 20px;
        padding-bottom: 50px;
    }

    .contact-info-inner {
        flex-direction: column;
    }

    .contact-info-left h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .contact-info-left p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-form-inner {
        flex-direction: column;
    }

    .contact-form-left, .contact-form-right {
        width: 100%;
    }

    .contact-form-left {
        border-radius: 15px 30px;
    }

    .about-content-row {
        gap: 30px;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .about-content-left,.about-content-right {
        width: 100%;
        max-width: 100%;
    }

    .about-content-right p {
        text-align: left;
    }

    .about-content-row:nth-child(even) {
        flex-direction: column;
    }

    .about-section .layer-middle {
        display: none;
    }

    .about-content-row:nth-child(even) .about-content-right {
        min-width: auto;
    }

    section.section.about-info {
        padding-top: 30px !important;
        padding-bottom: 50px !important;
    }

    .about-section .layer-bottom {
        max-width: 100px;
    }

    .about-info-grid {
        grid-template-columns: repeat(1,1fr);
    }

   .about-info-col {
        border-right: 0px;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #E4BB85;
    }

    .about-info-col:last-child{
        border-bottom: 0px;
        padding-bottom: 0px;
    }

    .about-info-col h2 {
        font-size: 42px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    .wedding-intro-inner {
        flex-direction: column;
    }

    .wedding-intro-left h2 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .wedding-intro-left {
        padding-bottom: 0px;
    }

    .wedding-intro-right img {
        height: 450px;
    }

    section.section.wedding-intro .layer-bottom-image {
        display: none;
    }

    section.section.wedding-grid-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wedding-grid-row {
        grid-template-columns: repeat(1,1fr);
    }

    .wedding-grid-col img {
        margin: 0 auto 25px;
    }

    .wedding-grid-col h2 {
        font-size: 23px;
        line-height: 32px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    section.section.wedding-gallery-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .gallery-slider-item {
        padding: 0px 10px;
    }

    .gallery-slider-item:nth-child(even) {
        transform: translateY(0px);
    }

    .gallery-slider .slick-list.draggable {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    section.section.menu-party-intro p {
        font-size: 16px;
        line-height: 29px;
    }

    section.section.menu-party-intro {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .variety-section-heading {
        margin-bottom: 50px;
    }

    .variety-section-heading h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .variety-grid-block {
        grid-template-columns: repeat(1,1fr);
    }

    .variety-col-item h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
        padding-left: 0px;
    }

    .variety-col-item ul li {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .variety-grid-block {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }

}


@media (max-width: 600px) {
    .masonry { 
        column-count: 1; 
    }
    .services-grid,
    .events-grid,
    .features-grid,
    .gallery-grid,
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-col:first-child {
        padding-top: 40px;
    }

    .menu-col-inner {
        gap: 20px;
        flex-direction: column;
    }

    .menu-col {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .menu-col:nth-child(odd) {
        padding-bottom: 20px;
    }

    .menu-col:nth-child(even) .menu-col-inner {
        flex-direction: column;
    }

    .menu-col:last-child {
        padding-bottom: 40px;
        padding-top: 0px;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 28px;
    }

    .footer {
        background-position: right;
    }

    br{
        display: none;
    }

    .about-content-left h2 {
        font-size: 25px;
        line-height: 36px;
    }

    .about-content-left img {
        max-width: 180px;
        margin-top: 20px;
    }
    
}
