:root {
  --primary-color: #c70f0f; /* Yummy Red */
  --primary-color: #CE1212;
  --headline-font: "Playfair Display", serif;
  --headline-weight: 700;
  --headline-size: 3rem;
  --headline-line-height: 1.1;
  --headline-color: #1a1a1a;

  --subheadline-font: "Poppins", sans-serif;
  --subheadline-size: 0.9rem;
  --subheadline-weight: 500;
  --subheadline-spacing: 0.15em;
  --subheadline-color: #c21b1b;

  --headline-accent-color: var(--primary-color);
}
html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
  font-family: 'Roboto', sans-serif;
}
/* Apply to all sections that anchor links scroll to */
section {
  scroll-margin-top: 80px; /* height of fixed navbar + small buffer */
}

/* ==============================================
   GLOBAL HEADLINE SYSTEM FOR ALL SECTIONS
   ============================================== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--subheadline-font);
    font-size: var(--subheadline-size);
    font-weight: var(--subheadline-weight);
    letter-spacing: var(--subheadline-spacing);
    text-transform: uppercase;
    color: var(--subheadline-color);
    margin-bottom: 0.5rem;
}

.section-heading {
    font-family: var(--headline-font);
    font-size: var(--headline-size);
    font-weight: var(--headline-weight);
    line-height: var(--headline-line-height);
    color: var(--headline-color);
}

.section-heading .accent {
    color: var(--headline-accent-color);
}


#copy-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color) !important;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

#copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/*********************************************************************************************
******************************** NAVBAR ******************************************************  
*********************************************************************************************/

.navbar {
  white-space: nowrap;        /* Prevent wrapping */
  height: 80px;               /* Keep navbar height fixed */
  display: flex;
  align-items: center;
}

/* Prevent nav items from wrapping & keep them same height */
.navbar-nav .nav-link {
  padding: 0.5rem 0.75rem;
  white-space: nowrap;        /* Don't wrap when text is long */
  display: flex;
  align-items: center;
  max-width: 150px;           /* Prevent Japanese text from stretching layout */
  overflow: hidden;
  text-overflow: ellipsis;    /* Add "..." if too long */
  font-weight: 500;
  margin-left: 1rem;
}
.navbar-brand {
  font-family: 'Amatic SC', cursive;
  font-size: 2rem;
  font-weight: bold;
}


.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--primary-color) !important; /* underline */
  font-weight: 600;
}

.flag-icon {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

/* Outline style for contact box */
.contact-outline {
  border: 2px solid var(--primary-color) !important; /* primary color border */
  background-color: transparent; /* transparent background */
  color: var(--primary-color) !important; /* text color same as border */
  transition: background-color 0.3s, color 0.3s;
}

.contact-outline p{

  color: #000; /* text color same as border */

}

/*********************************************************************************************
******************************** Hero Section ************************************************  
*********************************************************************************************/

#hero {
  position: relative;
  height: 80vh; /* 80% viewport height */
  background: url('assets/img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden; /* ensures floating image stays inside */
}

/* Gradient overlay */
#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), rgba(0,0,0,0.3));
  z-index: 1;
}

/* Hero content above overlay */
#hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Text column */
#hero .col-lg-6.text-white {
  z-index: 2;
}


/* Hero image */
.hero-image {
  max-width: 100%;
  border-radius: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  animation: float 6s ease-in-out infinite;
  display: block;
}

/*********************************************************************************************
******************************** About Section ***********************************************  
*********************************************************************************************/

#about {
  scroll-margin-top: 80px; /* fixed navbar offset */
}

#about .about-left img {
  width: 100%;
  border-radius: 15px;
}

#about .contact-box {
  margin-top: 20px;
  font-size: 1rem;
  outline-color: var(--primary-color) !important;
}

#about .contact-box h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
#about .contact-box p {
  text-decoration-color: #000;
}

/*********************************************************************************************
************************* Testimonials Section ***********************************************  
*********************************************************************************************/

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 3s ease-in-out;
  width: 300%; /* 3 cards */
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  border-radius: 15px;
  background-color: transparent; /* remove background color */
  box-shadow: none; /* remove shadow if any */
}

/* Stars color */
.testimonial-card i.bi-star-fill {
  color: #FFD700; /* gold stars */
}

.testimonial-card p, .testimonial-card h6{
  color: #000; /* gold stars */
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  display: inline-block;
}

.testimonial-dots .dot.active {
  background-color: var(--primary-color) !important;

}

/*********************************************************************************************
******************************** Menu Section ************************************************  
*********************************************************************************************/

.menu-categories button {
  min-width: 100px;
}

.menu-categories button.active {
  border-bottom: 2px solid #a20c0c;
  color: #fff;
}

.menu-item {
  display: none; /* hide by default */
}

.menu-item.show {
  display: block; /* show selected category */
}

/*********************************************************************************************
******************************** Contact Section *********************************************  
*********************************************************************************************/

#contact {
  padding: 60px 0;
}
/*
#contact .section-title h2 {
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

#contact .section-title p {
  font-size: 16px;
  color: #555;
}
*/
#contact iframe {
  border: 0;
  border-radius: 10px;
}

/* Info Items */
#contact .info-item {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s ease;
  position: relative;
}

#contact .info-item:hover {
  border-color: #ddd;
}

#contact .info-item i.icon {
  font-size: 32px;
  color: var(--primary-color) !important;
  margin-right: 15px;
}

/* Copy Icon */
.copy-icon {
  font-size: 1.3rem;
  cursor: pointer;
  color: #777;
  transition: 0.2s;
}

.copy-icon:hover {
  color: #000;
  transform: scale(1.1);
}

/* Text inside info card */
#contact .info-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

#contact .info-item p {
  margin: 0;
  color: #444;
  font-size: 15px;
  margin-top: 5px;
}

/* Contact Form */
#contact .php-email-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #eee;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
}

#contact .php-email-form button {
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  background-color: var(--primary-color) !important;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

#contact .php-email-form button:hover {
  background-color: #a20c0c;
}

/* Loading and messages */
#contact .loading,
#contact .error-message,
#contact .sent-message {
  display: none;
  font-size: 14px;
  margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .copy-icon {
    margin-left: 10px;
  }
  #contact .info-item {
    flex-wrap: wrap;
  }
}

/*********************************************************************************************
************************ BOOK A TABLE SECTION ************************************************  
*********************************************************************************************/

#book-table {
  padding: 80px 0;
  /*background: #f8f8f8;*/
}

/* Layout wrapper */
#book-table .booking-wrapper {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

/* Right form */
#book-table .booking-form-wrapper {
  padding: 30px;
  background: #ffffff;
}

/* Form inputs & textarea */
#book-table .booking-form input,
#book-table .booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.2s;
}

#book-table .booking-form input:focus,
#book-table .booking-form textarea:focus {
  border-color: var(--primary-color) !important;
  outline: none;
  box-shadow: 0 0 5px rgba(199, 15, 15, 0.3);
}

/* Submit button */
 .btn {

  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  background-color: var(--primary-color) !important;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.btn:hover {
  background-color: #a20c0c;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Fade-in class */
.hero-image.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Cards */
.card-title {
  font-weight: 700;
}

/*********************************************************************************************
************************ Gallery Section *****************************************************  
*********************************************************************************************/
/* ================= Section Titles ================= */
.section-title h2 {
    font-family: var(--headline-font);
    font-weight: 700;
    color: var(--headline-color);
    font-size: var(--headline-size);
    line-height: var(--headline-line-height);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--section-subtitle-color);
    font-size: var(--section-subtitle-size);
    letter-spacing: var(--section-subtitle-letter-spacing);
    text-transform: uppercase;
}

/* ================= Gallery Images ================= */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* ================= Swiper Navigation (Normal) ================= */
.swiper-button-prev,
.swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: white;
}

/* Reduce default Swiper arrow icon size */
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px !important;
}

/* ================= Swiper Pagination ================= */
/* Normal gallery dots below images */
.mySwiper .swiper-pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.mySwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.mySwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ================= Lightbox Modal ================= */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary-color);
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lightboxSwiper {
    width: 90%;
    max-width: 1000px;
    height: 80%;
}

.lightboxSwiper .swiper-slide img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Lightbox navigation arrows */
.lightboxSwiper .swiper-button-prev,
.lightboxSwiper .swiper-button-next {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.lightboxSwiper .swiper-button-prev:hover,
.lightboxSwiper .swiper-button-next:hover {
    background: var(--primary-color);;
}

/* Lightbox pagination below image, always visible */
.lightboxSwiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.lightboxSwiper .swiper-pagination .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.lightboxSwiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/*********************************************************************************************
************************ Event Planning Section **********************************************  
*********************************************************************************************/
/* ================= Event Images ================= */
.event-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 5px; /* very little gap between slides */
}

.event-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Overlay text with background at bottom-left */
.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent background */
    color: white;
    text-align: left;
}

.event-overlay h3 {
    margin: 0 0 5px;
    font-size: 1.5rem;
}

.event-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

/* ================= Swiper Navigation ================= */
.eventSwiper .swiper-button-prev,
.eventSwiper .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: var(--primary-color);
    color: white !important;
    transition: background 0.3s;
}

.eventSwiper .swiper-button-prev:hover,
.eventSwiper .swiper-button-next:hover {
    background: black; /* hover becomes black */
}

.eventSwiper .swiper-button-prev:after,
.eventSwiper .swiper-button-next:after {
    font-size: 16px !important;
    color: white !important;
}

/* ================= Swiper Pagination ================= */
.eventSwiper .swiper-pagination {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.eventSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.eventSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}



/*********************************************************************************************
************************ Order Online Section ************************************************  
*********************************************************************************************/

#order-online {
  padding: 80px 0;
  background: #fff;
}

#order-online .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

#order-online .section-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.order-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.order-card img {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.order-card span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/*********************************************************************************************
************************ Footer Section ******************************************************  
*********************************************************************************************/

#footer {
  background: #1f1f23;
  padding: 60px 0 25px;
  color: #ddd;
  font-size: 15px;
}

/* Top area spacing */
#footer .footer-top {
  margin-bottom: 25px;
}

/* Column sections */
#footer .footer-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

#footer .footer-info p {
  margin: 0;
  line-height: 1.6;
  color: #ccc;
}

/* Icons (red, matching your screenshot) */
#footer .footer-icon {
  font-size: 26px;
  color: #ba1c1c;
  margin-bottom: 10px;
}

/* Social links */
#footer .social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #777;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

#footer .social-links i {
  font-size: 18px;
  color: #ccc;
}

#footer .social-links a:hover {
  border-color: #ba1c1c;
}

#footer .social-links a:hover i {
  color: #ba1c1c;
}

/* Divider line */
#footer .footer-divider {
  border: none;
  border-top: 1px solid #333;
  margin: 25px 0;
}

/* Bottom credits */
#footer .footer-bottom {
  color: #bbb;
  font-size: 14px;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: var(--primary-color) !important;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
  display: none; /* hidden by default */
}

#backToTop:hover {
  background-color: #ba1c1c;
  transform: translateY(-2px);
}

/*********************************************************************************************
************************ Responsive Adjustments ********************************************** 
*********************************************************************************************/

@media (max-width: 992px) {

  /* Mobile dropdown menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #f7f7f7 !important;   /* Light background */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
  }

  .navbar-nav .nav-link {
    color: #333 !important;           /* Darker text for contrast */
    padding: 0.75rem 0;
  }

  .dropdown-menu {
    background: #f7f7f7 !important;
    border: none;
    box-shadow: none;
  }

  .dropdown-menu .dropdown-item {
    color: #333 !important;
  }
}

  #hero .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  #hero .col-lg-6 {
    margin-bottom: 20px;
  }
  #hero .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }

    #about .row {
    flex-direction: column;
    text-align: center;
  }
  #about .about-text {
    margin-top: 30px;
  }
  #about .contact-box {
    margin-top: 15px;
  }

    .copy-icon {
    margin-left: 10px;
  }
  #contact .info-item {
    flex-wrap: wrap;
  }
}