body {
    font-family: 'Mulish', sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.7;
}
body, html {
    margin: 0;
    padding: 0;
}

/* home banner styling */
.home-banner .banner-text h1{
    margin-bottom: 2px;
}

.content-section h2,
.content-section h3,
.content-section h4 {
    color: #e16748;
    margin-bottom: 10px;
    font-weight: 800;
}
#h1 {
    font-size: 38px;
    text-align: center;
    margin: 40px 0 20px;
}
.content-section h2 {
    font-size: 29px;
    text-align: center;
    margin: 40px 0 20px;
}

.content-section h3 {
    font-size: 26px;
    margin-top: 30px;
}

.content-section h4 {
    font-size: 22px;
    margin-top: 30px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}
/* last paragraph para */
#para{
    font-weight: bold;
    margin-top: 10px;
    font-size:large;
    color: black;
}


/* /* dark overlay */
.food-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); 
    z-index: 0;
}

/* text styling */
#food-p {
    position: relative;
    z-index: 1; 
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 200px;
} 

/* left-right styling */

.left-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: #ffe8e3;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    margin: 20px 0;
}
.left-right {
    display: flex;
    align-items: flex-start; 
    gap: 20px;
}

.right h4:first-child {
    margin-top: 0 !important;
}

.right p:first-of-type {
    margin-top: 10px;  
}


.left {
    flex: 0 0 40%; 
}

.left-img {
    height: 650px;
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

.right {
    /*flex: 1;  */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
   
    font-weight: 700;  
}

.right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
}
 .ul1 {
    
    list-style: none;
    padding: 0;
    display: flex;           
    flex-wrap: wrap;        
    gap: 20px;               
  }

  .li1 {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: #fff;  
    border-radius: 10px;     
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    padding: 20px;
    flex: 1 1 calc(25% - 20px); 
    min-width: 200px;        
    transition: transform 0.3s;
  }

  .li1:hover {
    background-color:cadetblue;
    transform: translateY(-5px); 
    cursor: pointer;
    
  }

  
  .card-item:hover{
    color: #fafafa;

  }

  /* Content inside card */
  .card-title {
    font-size: 1.05em;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .card-text {
    font-size: 1em;
    font-weight: 350;
    color: #555;
  }
 .card-item{
   text-align: left;
 }
 .a1 {
    color: blue !important;
}


/* FAQ  */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

 
/* dropdown */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
     outline: none;
    color: #333;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: #ffe8e3;
}

.faq-question.active {
    background: #e16748;
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}


.faq-question.active .faq-icon {
    transform: rotate(180deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 15px;
}


/* for responsiveness */

/* h2 & h3 responsivness */
@media (max-width: 768px) {
   .content-section h2 {
        font-size: 18px;
    }
   .content-section h3 {
        font-size: 16px;
    }
}
/* left-right */
.left-right {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.left-right .left,
.left-right .right {
    width: 50%;
}

@media(max-width: 768px) {
    .left-right {
        flex-direction: column;
    }

    .left-right .left,
    .left-right .right {
        width: 100%;
    }
}

.ul1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.li1 {
    width: calc(50% - 20px);
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
}

@media(max-width: 600px) {
    .li1 {
        width: 100%;
    }
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}
/*body {
    font-family: 'Mulish', sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.7;
}
body, html {
    margin: 0;
    padding: 0;
}

.home-banner .banner-text h1{
    margin-bottom: 2px;
}

.content-section h2,
.content-section h3,
.content-section h4 {
    color: #e16748;
    margin-bottom: 10px;
    font-weight: 800;
}

.content-section h2 {
    font-size: 29px;
    text-align: center;
    margin: 10px 0 20px;
}

.content-section h3 {
    font-size: 26px;
    margin-top: 15px;
}

.content-section h4 {
    font-size: 22px;
    margin-top: 15px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}
*/
  .card-item:hover{
    color: #fafafa;

  }

 /* starting content */
 /* modern-event */
.modern-events {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
    max-width: 100%;
    margin: 30px auto;
    transition: 0.3s ease-in-out;
}

.modern-events:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 35px rgba(0,0,0,0.12);
}

 /* Delicious Section Styling (Same Card Style) */

/* Subtitles */
.delicious-section h5 {
    font-size: 18px;
    color: #ff4d00;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Highlight Link */
.delicious-section a{
    color: blue;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

/* .delicious-section a.highlight-link:hover {
    border-bottom: 2px solid #ff4d00;
} */

/* Responsive delicious-section */
@media (max-width: 768px) {
    .delicious-section h2 {
        font-size: 26px;
        text-align: center;
    }
    .delicious-section h3 {
        font-size: 22px;
        text-align: center;
    }
    .delicious-section h5 {
        text-align: center;
    }
    .delicious-section p {
        font-size: 15px;
        text-align: center;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .delicious-section h2 {
        font-size: 22px;
    }
    .delicious-section h3 {
        font-size: 20px;
    }
}

 /* events styling & responsivness */
/* Container Styling */

/* Paragraph */
.modern-events p {
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Highlight Link */
.highlight-link {
    color: blue;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}


/* Party List styling*/
.party-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-bottom: 20px;
}

.party-list li {
    position: relative; 
    background: #fff4ec;
    padding: 12px 16px 12px 28px; 
    border-radius: 10px;
    font-size: 15px;
    color: #333;
    transition: 0.3s ease;
    border-left: 4px solid #ff4d00;
}

/* Add a small dot before each item */
.party-list li::before {
    content: "•";           
    position: absolute;
    left: 12px;             
    top: 50%;               
    transform: translateY(-50%);
    color: #ff4d00;         
    font-size: 18px;        
}

.party-list li:hover {
    background: #ffe0d1;
    transform: translateX(5px);
}


/* Responsive Design */
@media (max-width: 768px) {
    .modern-events {
        padding: 30px;
    }

    .party-list {
        grid-template-columns: 1fr; 
    }

    .modern-events h3 {
        font-size: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modern-events {
        padding: 20px;
    }

    .modern-events h4 {
        font-size: 15px;
    }

    .modern-events p {
        font-size: 14px;
    }
}
/* flawless-hospitality design */
/* left-right */
h4{
    text-align: center;
     align-items: center;
}
.left-right{
    display: flex;
   justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 10px;
}
.left{
  text-align: justify;
}
.right {
    flex: 0 0 40%; 
}
.right img {
    height: 350px;
    width: 650px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}
/* responsiv left-right */
@media (max-width: 768px) {
    .left-right {
        flex-direction: column; 
        gap: 20px;
    }

    .right {
        width: 100%; 
    }

    .right img {
        max-width: 100%;
        height: auto;
    }
}

/* FAQ  */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

 
/* dropdown */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    background: #f7f7f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
     outline: none;
    color: #333;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: #ffe8e3;
}

.faq-question.active {
    background: #e16748;
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}


.faq-question.active .faq-icon {
    transform: rotate(180deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 15px;
}


/* for responsiveness */

/* h2 & h3 responsivness */
@media (max-width: 768px) {
   .content-section h2 {
        font-size: 18px;
    }
   .content-section h3 {
        font-size: 16px;
    }
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

   
