/********** Template CSS **********/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

h1,
h2,
h3,
.font-heading {
    font-family: "Emblema One", system-ui;
    font-weight: 400;
    font-style: normal;
}

h4,
h5,
h6,
.font-body {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

@media (min-width: 992px) {
    .display-1 {
        font-size: 7rem;
    }
}

.btn {
    font-family: "Emblema One", system-ui;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--bs-secondary);
    font-size: 17px;
    outline: none;
}

.navbar .nav-link {
    color: #ccc;
    margin: 0 10px;
    font-weight: 500;
   
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ff6a00;
}

.dropdown-menu .dropdown-item:hover {
    background: #ff6a00;
    color: #fff;
}


.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

/* Menu Section */
.menu {
    background: #f8f9fa;
}

.menu h2 {
    font-weight: 700;
    letter-spacing: 2px;
}

.menu-item .rounded {
    background: #ffffff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.menu-item .rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Menu Item Title */
.menu-item h5 {
    font-weight: 600;
    color: #222;
}

/* Description */
.menu-item p {
    line-height: 1.5;
}

/* Price Style */
.menu-item h6 {
    background: #ff6a00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Adjust menu section spacing */
.menu-section,
.menu .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.menu .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.menu .col-lg-4,
.menu .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    .menu .col-lg-4,
    .menu .col-12 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 991.98px) {
    .menu .col-lg-4,
    .menu .col-12 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Menu card spacing and width */
.menu-card {
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* CSS Grid for menu cards - proper grid layout */
.menu .row.masonry {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Responsive grid breakpoints */
@media (min-width: 1200px) {
    .menu .row.masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .menu .row.masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .menu .row.masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Grid items should not inherit Bootstrap column classes */
.menu .row.masonry > .col-lg-4,
.menu .row.masonry > .col-md-6,
.menu .row.masonry > .col-12,
.menu .row.masonry > div {
    display: block;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

/* Menu card styling */
.menu .row.masonry .menu-card {
    margin-bottom: 0;
    max-width: none;
    width: 100%;
}

/* Menu item spacing */
.menu-card .menu-item {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 0.75rem;
}

.menu-card .menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Section title */
.section-title {
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}


@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.section-title {
    color: var(--bs-primary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5rem;
}

.animate-up-down {
    position: relative;
    animation: animateUpDown 1s ease infinite;
}

@keyframes animateUpDown { 
    0% { 
        top: 0px;
    }
    50% { 
        top: 10px;
    }
    100% { 
        top: 0px;
    } 
}

.animate-rotate {
    position: absolute;
    animation: animateRotate 8s linear infinite;
}

@keyframes animateRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.bg-hero {
    background: linear-gradient(rgba(34, 36, 41, .8), rgba(34, 36, 41, .8)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.menu .tab-content img {
    transition: .5s;
}

.menu .tab-content img:hover {
    opacity: .7;
}

.team-item img {
    transform: scale(1.2);
    transition: .5s;
}

.team-item:hover img {
    margin-top: -50px;
    margin-bottom: 50px;
}

.team-item .team-overlay {
    position: absolute;
    top: calc(100% - 100px);
    bottom: 100px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 36, 41, .9);
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    top: 0;
    opacity: 1;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--bs-primary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.testimonial-carousel .owl-item img {
    width: 90px;
    height: 90px;
}

.blog-item img {
    transition: .5s;
}

.blog-item:hover img {
    transform: scale(1.2);
}

.instagram img {
    transition: .5s;
}

.instagram img:hover {
    opacity: .9;
}

@media (min-width: 991.98px) {
    .credit {
        background: #111111;
    }
}




.story-card {
    background: rgba(195, 184, 184, 0.25);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    color: #0f0f0f;
}

.story-card h4 {
    color: #ffb703;
    margin-bottom: 10px;
}

.story-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.35);
}

/* STOP horizontal scroll globally */
html, body {
    overflow-x: hidden;
}






.luxury-story {
    padding-left: 30px;
}

/* Right side image */
.lux-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Full width cards */
.lux-strip {
    width: 100%;
    background: #f4f0ee;
    padding: 30px 35px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.lux-strip.alt {
    background: #ffffff;
}

.lux-strip:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 20px rgba(0,0,0,0.12);
}

.lux-strip h5 {
    color: #ffb703;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lux-strip p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Highlight location */
.lux-strip.location {
    background: linear-gradient(135deg, #ffb703, #ff9f1c);
}

.lux-strip.location h5,
.lux-strip.location p {
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .luxury-story {
        padding-left: 0;
        margin-top: 30px;
    }

    .lux-image img {
        height: 240px;
    }
}

.right-bg {
    background: #fff;
    padding: 60px 80px 60px 60px;
    height: 100%;
    overflow-x: hidden;
}

/* Make background stretch till screen end */
@media (min-width: 992px) {
    .right-bg {
        margin-right: -100vw;
        padding-right: calc(100vw - 50%);
    }
}

/* Breakfast Menu Scrollable Cards */
.breakfast-menu-container {
    overflow: hidden;
}

.breakfast-menu-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
    /* Add scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #ff6a00 #f1f1f1;
}

/* Webkit browsers */
.breakfast-menu-scroll::-webkit-scrollbar {
    width: 8px;
}

.breakfast-menu-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.breakfast-menu-scroll::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 10px;
}

.breakfast-menu-scroll::-webkit-scrollbar-thumb:hover {
    background: #e05a00;
}

/* Hero Section with Blurred Background */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/home2.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.7;
}

.hero-main-img {
    position: relative;
    z-index: 1;
    animation: floatEffect 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-main-img:hover {
    transform: scale(1.03);
}

.hero-content-img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-content-img:hover {
    transform: scale(1.05);
}

.hero-text {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    color: white;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



@keyframes floatEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Video Section */
.video-card {
    position: relative;
    padding-top: 100%; /* vertical shorts ratio */
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: transparent; /* optional */
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* 🔥 MOST IMPORTANT */
    border: 0;
}


/* Parallax Background */
.features-parallax {
    background-image: url("../img/aboutbg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
}

/* REMOVE full white overlay effect */
.features-overlay {
    background: transparent;
}

/* Card style */
.feature-box {
    background: #d49161;
    padding: 35px 25px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
}

.feature-box img {
    height: 75px;
    margin-bottom: 20px;
}

.feature-box h5 {
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b3d2e;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Mobile fix */
@media (max-width: 991px) {
    .features-parallax {
        background-attachment: scroll;
    }
}



.story-wrap {
    padding: 40px;
  }
  
  /* IMAGE + STORY ROW */
  .story-top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  
  /* RIGHT CONTENT */
  .story-block {
    flex: 1.2;
  }
  
  /* TEXT STYLES */
  .story-block h3 {
    font-size: 26px;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
  }
  
  .story-block p {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 16px;
  }
  
  /* DIVIDER */
  .story-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
  }
  
  /* LOCATION */
  .story-location {
    margin-top: 40px;
    font-size: 15px;
    opacity: 0.85;
  }
  
  /* 📱 RESPONSIVE (Mobile) */
  @media (max-width: 768px) {
    .story-top {
      flex-direction: column;
    }
  }
  /* IMAGE CONTAINER */
.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  /* IMAGE ITSELF */
  .story-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
  }
  
  /* 📱 MOBILE FIX */
  @media (max-width: 768px) {
    .story-wrap {
      padding: 20px;
    }
  
    .story-top {
      flex-direction: column;
      gap: 25px;
    }
  
    .story-image {
      width: 100%;
    }
  
    .story-image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
    }
  }
.navbar {
    overflow: visible !important;
}