* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0px 15px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1E1E1E;
    color: #D9D9D9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Cinzel;
    font-weight: 700;
    font-style: Bold;
    letter-spacing: 0%;
    text-align: center;
    color: #F3D382;
    margin: 0px;
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 28px;
}

/* Medium screens (tablets, small laptops) */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }
}




p {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 20px;
    text-align: left;
    margin: 0px;
}

a {
    font-family: DM Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #D9D9D9;
    text-decoration: none;
}

button,
.btn {
    font-family: Cormorant SC;
    background-color: #F5BE32;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border: 1px solid #000000;
    cursor: pointer;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 100;
    margin-top: 20px;
    width: calc(100% - 30px);
}

header .logo-container {
    max-width: 106px;
    margin: 0px;
    padding: 0px;
}

header img {
    width: 100%;
    height: auto;
}

header .button-group {
    display: flex;
    gap: 10px;

}

section {
    padding: 90px;
    padding-bottom: 20px;
    overflow: hidden;
}

.line-style {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    height: 50px;
    width: 100% !important;
}

.line-style img {
    height: 43px !important;
    width: auto !important;
    max-width: 100% !important;
}

.hero-section {
    transition: all 0.3s ease;
    background: radial-gradient(74.22% 60.15% at 50% 39.85%, rgba(0, 0, 0, 0.6) 0%, rgba(30, 30, 30, 0.8) 47.76%, #1E1E1E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    transition: all 0.3s ease;
}

.hero-section>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    top: 0px;
}

.hero-section * {
    text-align: center;
}

.hero-text {
    width: 1200px;
    max-width: 100%;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-section button {
    margin-top: 50px;
}

.text-media-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* two equal columns for first row */
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.text-media-section>*:nth-child(3) {
    grid-column: 1 / -1;
    /* span full width */
}

.text-media-section img {
    width: 100%;
    height: auto;
    display: block;
}

.text-media-section h2 {
    margin-bottom: 20px;
}

.text-media-section .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-media-section .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-media-section p {
    margin-bottom: 30px;
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
    .text-media-section {
        grid-template-columns: 1fr;
        /* stack all elements */
    }

    .text-media-section>*:nth-child(3) {
        grid-column: 1;
        /* full width in stacked layout */
    }
}

.menu-category-section .menu-category-cards {
    padding-bottom: 60px;
}

.menu-category-section h2 {
    margin-bottom: 40px;
    text-align: center;
}

.swiper-slide.card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.swiper-slide.card>div {
    margin-top: 24px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}


.swiper-pagination-bullet {
    background: #a8a8a8 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #F5BE32 !important;
}

.testimonial-section {
    margin-top: 40px;
}

.testimonial-section .swiper-wrapper {
    padding-bottom: 60px;
}

.testimonial-section .swiper-slide p {
    width: 585px;
    margin: auto;
    text-align: center;
    max-width: 100%;
    margin-bottom: 10px;
}

.testimonial-section .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonial-section .swiper-slide img {
    width: 32px;
}


/* Menu Page */
.menu-items {
   display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.menu-item img {
    width: 100%;
    aspect-ratio: 1;
}

.menu-item {
    overflow: hidden;
    width: calc((100% / 4) - 60px)
}

.card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
}

.card-content p {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.card-content span {
    font-family: DM Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-block: 40px;
}

.menu-btn {
    background-color: transparent;
    color: #F5BE32;
    border: 1px solid #F5BE32;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.menu-btn:hover {
    background-color: #636363;
    color: #ffffff;
}

.menu-btn.active {
    background-color: #F5BE32;
    color: #000;
    border: 1px solid #F5BE32;
}

.infinite-scrolling-section {
    position: relative;
    /* overflow: hidden; */
    margin-bottom: 100px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-inline: 0px;
}

.infinite-scrolling-section .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.infinite-scrolling-section .line-style {
    margin-bottom: -100px;
    padding-top: 100px;
    margin-top: 0px;
}

.splide__slide.scroll-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-right: 50px;
}

.splide__slide.scroll-item img {
    max-width: 177px;
    max-height: 97px;
    opacity: 1;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.splide__slide.scroll-item p {
    font-family: Cinzel;
    font-weight: 700;
    font-style: bold;
    font-size: 55px;
    line-height: 60px;
    letter-spacing: 0;
    color: #F3D382;
}

/* Medium screens (tablets, small laptops) */
@media (max-width: 1024px) {
    .splide__slide.scroll-item p {
        font-size: 42px;
        line-height: 48px;
    }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
    .splide__slide.scroll-item p {
        font-size: 32px;
        line-height: 38px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .splide__slide.scroll-item p {
        font-size: 24px;
        line-height: 30px;
    }
}


footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 100px;
    padding-inline: 30px;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    margin-inline: -15px;
    background: radial-gradient(74.22% 60.15% at 50% 39.85%, rgba(0, 0, 0, 0.6) 0%, rgba(30, 30, 30, 0.8) 47.76%, #1E1E1E 100%);
}

.footer-logo-container {
    width: 106px;
    height: 64px;
    opacity: 1;
}

.footer-logo-container img {
    width: 100%;
    height: auto;
}

.footer-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-left h3 {
  font-family: Cinzel;
  font-weight: 700;
  font-style: bold;
  font-size: 55px;
  line-height: 60px;
  letter-spacing: 0;
  text-align: left;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .footer-left h3 {
    font-size: 42px;
    line-height: 48px;
  }
}

/* Small screens (mobile devices) */
@media (max-width: 768px) {
  .footer-left h3 {
    font-size: 32px;
    line-height: 38px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .footer-left h3 {
    font-size: 24px;
    line-height: 30px;
    text-align: center; /* Optional for better mobile layout */
  }
}


.footer-left button {
    margin-top: 50px;
}

.footer-contact {
    width: 100%;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.footer-bg {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 15px 0px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 20px;
}

.footer-contact .contact-section {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.contact-section img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.social-media-icons {
    display: flex;
    gap: 15px;
}

.social-media-icons a {
    height: 20px;
    width: 20px;
}

@media only screen and (max-width: 991px) {
    footer {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        width: 100%;
    }

    .map-container {
        width: 100%;
    }

    .footer-right iframe {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 18 / 6 !important;
    }

    .footer-contact {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

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

    .text-media-section {
        grid-template-columns: 1fr;
        /* stack all elements */
    }

    .text-media-section>*:nth-child(3) {
        grid-column: 1;
        /* full width in stacked layout */
    }

    .menu-item {
        width: calc((100% / 2) - 30px)
    }

    .infinite-scrolling-section .line-style {
        margin-bottom: -50px;
        padding-top: 50px;
        margin-top: 0px;
    }

    .splide__slide.scroll-item p {
        font-size: 32px;
        line-height: 36px;
    }
}

.hero-section .hero-text h1 + h1 {
    display: none;
}

@media only screen and (max-width: 800px) {
    header .button-group {
        position: fixed;
        bottom: 0px;
        background-color: #212121fa;
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        box-shadow: 0px -2px 20px 8px #b7b7b717;
    }

    .hero-section .line-style {
        margin-top: auto;
        margin-bottom: 20px;
    }

    .hero-text button {
        display: none;
    }

    section {
        padding: 20px;
    }

    .hero-section {
        margin-top: 100px;
        min-height: 50vh
    }

    .line-style {
        margin-top: 20px;
    }

    .swiper-slide.card img {
        aspect-ratio: 1;
    }

    footer {
        margin-bottom: 70px;
        margin-top: 0px;
    }

    .text-media-section {
        margin-top: 0px;
    }

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

    .menu-items {
        gap: 10px;
    }

    .menu-item {
        width: calc((100% / 2) - 15px)
    }

    .card-content {
        flex-direction: column;
        align-items: flex-start;
        height: 80px;
    }
}

/* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

/* Modal box */
.modal-content {
  background-color: #fff;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation-duration: 0.6s;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
}

.modal-header p {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.modal-header .close {
  font-size: 24px;
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
}

.modal-header .close:hover {
  color: #000;
}

/* Body */
.modal-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.partner-link:hover {
  background-color: #f3d3821a;
  border-color: #f3d382;
}

.partner-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
