/* ============================================================
   Catering Chotto – Section Styles
   All class names are prefixed with  Catering_Chotto__
   ============================================================ */

/* ---------- Outer wrapper ---------- */
.catering-chotto-page {
    width: 100%;
}

/* ---------- Two-column section ---------- */
.Catering_Chotto__section {
     background-color: #5B6828;
    padding-top: 120px;
    padding-bottom: 140px;
    display: flex;
    align-items: stretch;
    min-height: 480px;
    overflow: hidden;
}

/* ---------- Left column: image ---------- */
.Catering_Chotto__image-col {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.Catering_Chotto__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.Catering_Chotto__image-col:hover .Catering_Chotto__image {
    transform: scale(1.07);
}



/* ---------- Header row: logo left, label+title right ---------- */
.Catering_Chotto__header-row {
    justify-content: space-between;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.Catering_neo__header-row{
    justify-content: space-between;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* ---------- Logo ---------- */
.Catering_Chotto__logo-wrap {
    flex-shrink: 0;
}

.Catering_Chotto__logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

/* ---------- Header text (label + title) ---------- */
.Catering_Chotto__header-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 51%;
    max-width: 100%;
}

.catering-neo-eatery__header-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 58%;
    max-width: 100%;
}

/* ---------- Right column: content ---------- */
.Catering_Chotto__content-col {
    flex: 0 0 50%;
    max-width: 50%;
    
    flex-direction: column;
    justify-content: center;
    padding: 75px 66px;
    box-sizing: border-box;
}
.Catering_Chotto_bg{
background-color: #EBB5A4; /* warm salmon / dusty-rose from screenshot */
    display: flex;
    border-radius: 0 10px 10px 0;
}
.catering-neo-eatery{
    background-color: #F9EFDF; /* warm salmon / dusty-rose from screenshot */
    border-radius: 0 10px 10px 0;
}
/* ---------- Logo ---------- */
.Catering_Chotto__logo-wrap {
    margin-bottom: 20px;
}

.Catering_Chotto__logo {
    width: 162px;
    height: 162px;
    object-fit: contain;
    display: block;
}

/* ---------- Label (e.g. "CHOTTO STATIONS") ---------- */
.Catering_Chotto__label {
    color: #6D1610;
font-family: "Readex Pro";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 111.762%; /* 26.823px */
letter-spacing: -1.2px;
text-transform: uppercase;
margin: 0 0 12px;
}
.Catering_neo__label{
      color: #9C5E44;
font-family: "Readex Pro";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 111.762%; /* 26.823px */
letter-spacing: -1.2px;
text-transform: uppercase;
margin: 0 0 12px;
}

/* ---------- Title ---------- */
.Catering_Chotto__title {
    color: #000;
font-family: "Readex Pro";
font-size: 55px;
font-style: normal;
font-weight: 300;
line-height: 111.762%; /* 61.469px */
letter-spacing: -2.75px;
margin: 0 0 24px;
}

/* ---------- Divider line between label/title and description ---------- */


/* ---------- Description ---------- */

.Catering_Chotto__description::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(109, 22, 16, 0.50);
    margin-bottom: 62px;
}
.Catering_Chotto__description {
color: #000;
font-family: "Readex Pro";
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 156%; /* 28.08px */
 margin: 0 0 55px;
 width: 96%;
 max-width: 100%;
}
.cat-neo-desc{
    padding-bottom: 31px;
}

/* ---------- Button ---------- */
.Catering_Chotto__btn {
color: #EBB5A4;
font-family: "Readex Pro";
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 111.762%; /* 23.47px */
letter-spacing: -1.05px;
display: inline-block;
align-self: flex-start;
border-radius: 10px;
background: #6D1610;
padding: 23px 37px;
transition: background-color 0.25s ease, transform 0.2s ease;
white-space: nowrap;
}
.Catering_neo__btn{
    color: #FFFFFF;
font-family: "Readex Pro";
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: 111.762%; /* 23.47px */
letter-spacing: -1.05px;
display: inline-block;
align-self: flex-start;
border-radius: 10px;
background: #9C5E44;
padding: 23px 37px;
transition: background-color 0.25s ease, transform 0.2s ease;
white-space: nowrap;
}

.Catering_Chotto__btn:hover,
.Catering_Chotto__btn:focus {
    background: #6d1610d1;
    color: #EBB5A4;
    transform: translateY(-1px);
    outline: none;
}

.Catering_Chotto__btn:active {
    transform: translateY(0);
}

.Catering_neo__btn:hover,
.Catering_neo__btn:focus {
    background: #b87153;
    color: #FFFFFF;
    transform: translateY(-1px);
    outline: none;
}

.Catering_neo__btn:active {
    transform: translateY(0);
}

/* ============================================================
   Responsive – large screens (≤ 1600px)
   ============================================================ */
@media (max-width: 1600px) {
    .Catering_Chotto__title {
        font-size: 45px;
    }
    .Catering_Chotto__label {
    font-size: 22px;
}
.Catering_neo__label{
    font-size: 22px;
}
.Catering_Chotto__logo {
    width: 150px;
    height: 150px;
}
.Catering_Chotto__btn {
    font-size: 20px;
}
.Catering_neo__btn{
    font-size: 20px;
}
.Catering_Chotto__section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.Catering_Chotto__description {
    width: 100%;
}
.cat-neo-desc{
    padding-bottom: 0px;
}
}
/* ============================================================
   Responsive – (≤ 1486px)
   ============================================================ */
@media (max-width: 1486px) {
    .Catering_Chotto__title {
        font-size: 40px;
    }
        .Catering_Chotto__logo {
        width: 132px;
        height: 133px;
    }
    img.Catering_neo__logo {
    width: 171px;
}
    .Catering_Chotto__description {
    font-size: 16px;
}
    .Catering_Chotto__btn {
        font-size: 18px;
        padding: 16px 28px;
    }
    .Catering_neo__btn{
        font-size: 18px;
        padding: 16px 28px;
    }
.Catering_Chotto__description::before {
    margin-bottom: 43px;
}
.Catering_neo__label{
        font-size: 20px;
    }
     .Catering_Chotto__label {
        font-size: 20px;
    }
}

/* ============================================================
   Responsive – (≤ 1362px)
   ============================================================ */
@media (max-width: 1366px) {
    .Catering_Chotto__title {
        font-size: 37px;
    }
    .Catering_Chotto__logo {
        width: 125px;
        height: 125px;
    }
        .Catering_Chotto__label {
        font-size: 20px;
    }
    .Catering_neo__label{
        font-size: 20px;
    }
    .Catering_Chotto__header-row {
    gap: 8px;
}
.Catering_neo__header-row{
     gap: 8px;
}
.Catering_Chotto__description {
        font-size: 15px;
    }
        .Catering_Chotto__description {
        font-size: 15px;
    }
        .Catering_Chotto__btn {
        font-size: 16px;
    }
    .Catering_neo__btn {
        font-size: 16px;
    }
}

/* ============================================================
   Responsive – (≤ 1225px)
   ============================================================ */
@media (max-width: 1225px) {
    .Catering_Chotto__header-text {
        width: 100%;
        max-width: 100%;
    }
    .catering-neo-eatery__header-text{
        width: 100%;
        max-width: 100%;
    }
    .Catering_Chotto__header-row {
    display: block;
}
.Catering_neo__header-row{
    display: block;
}
}

/* ============================================================
   Responsive – (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .Catering_Chotto__section {
        display: block;
    }
    .Catering_Chotto__image-col {
    max-width: 100%;
}
.Catering_Chotto__content-col {
    max-width: 100%;
}
.Catering_Chotto__image {
    width: 100%;
    height: 450px;
}
    .Catering_Chotto__section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .Catering_Chotto_bg{
background-color: #EBB5A4; /* warm salmon / dusty-rose from screenshot */
    display: flex;
    border-radius: 0 0px 0px 0;
}
}
/* ============================================================
   Responsive – (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    .Catering_Chotto__section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
        .Catering_Chotto__image {
        width: 100%;
        height: 303px;
    }
        .Catering_Chotto__description {
        font-size: 15px;
    }
        .Catering_Chotto__btn {
        font-size: 16px;
        padding: 17px 33px;
    }
    .Catering_neo__btn{
         font-size: 16px;
        padding: 17px 33px;
    }
        .Catering_Chotto__description::before {
        margin-bottom: 26px;
    }
    .Catering_Chotto__title {
        letter-spacing: -1.30px;
    }
    .Catering_Chotto__title {
    margin: 0 0 10px;
}

}

/* ============================================================
   Responsive – tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    .Catering_Chotto__content-col {
        padding: 40px 36px;
    }

    .Catering_Chotto__logo {
        width: 72px;
        height: 72px;
    }
}

/* ============================================================
   Responsive – mobile (≤ 640px)
   Stack image on top, content below
   ============================================================ */
@media (max-width: 640px) {
    .Catering_Chotto__section {
        flex-direction: column;
        min-height: auto;
    }

    .Catering_Chotto__image-col,
    .Catering_Chotto__content-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .Catering_Chotto__image-col {
        height: 260px;
    }

    .Catering_Chotto__content-col {
        padding: 36px 24px;
    }

    .Catering_Chotto__title {
        font-size: 28px;
    }

    .Catering_Chotto__btn {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
    .Catering_neo__btn{
         width: 100%;
        text-align: center;
        align-self: stretch;
    }
}
