/* ============================================================
   Ubud Cooking Class - Global Stylesheet
   All pages reference this file
   ============================================================ */

 :root {
    --bg: #fefcf8;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --accent: #ea580c;
    --accent-soft: rgba(234, 88, 12, .14);
    --accent2: #16a34a;
    --accent2-soft: rgba(22, 163, 74, .14);
    --border: rgba(15, 23, 42, .07);
    --gold: #a0845c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ===== HEADER ===== */

#main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 40px;
    transition: all 0.3s ease;
}

#main-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 40px;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
    display: block;
}

#main-header.scrolled .logo {
    color: var(--text);
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-sub {
    font-size: 13px;
    color: var(--gold);
    margin-top: 2px;
    font-weight: 500;
}

nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

#main-header.scrolled .nav-link {
    color: var(--text);
}

#main-header.scrolled .nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

#main-header.scrolled .nav-toggle span {
    background: var(--text);
}


/* ===== PAGE HERO (for sub-pages) ===== */

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-hero-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 5;
    padding: 20px;
}

.page-hero-title h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.page-hero-title h1::before,
.page-hero-title h1::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 1px;
    background: #fff;
    vertical-align: middle;
    margin: 0 20px;
}


/* ===== PAGE CONTENT ===== */

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 16px 0;
}

.page-content h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 8px 0;
}

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    display: block;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.about-layout img {
    margin: 0;
    width: 100%;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 4px;
}

.about-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0;
}

.about-featured-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-top: 60px;
}

.menu-class {
    margin-bottom: 40px;
}

.menu-class h4 {
    font-size: 20px;
    color: var(--text);
    margin: 0 0 8px 0;
}

.menu-class .day {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.menu-class .menu-label {
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
}

.menu-class ul {
    list-style: none;
    padding: 0;
}

.menu-class li {
    color: var(--muted);
    font-size: 15px;
    padding: 3px 0;
}

.menu-class .price {
    color: var(--text);
    font-weight: 600;
    margin-top: 12px;
}

.recipe-item {
    margin-bottom: 40px;
}

.recipe-item h4 {
    font-size: 20px;
    margin: 16px 0 8px 0;
}

.recipe-item img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}


/* ===== GALLERY GRID ===== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* ===== FORMS ===== */

form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 32px 0 16px 0;
}

.submit-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
    width: auto;
}

.submit-btn:hover {
    background: #8a7048;
}

.pickup-note {
    color: var(--muted);
    font-size: 14px;
    margin: 20px 0 8px 0;
}

.pickup-free {
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}


/* ===== CONTACT LAYOUT ===== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info .contact-label {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-info p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 8px;
}

.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 15px;
    border: 1px solid #ddd;
    text-align: center;
    padding: 20px;
}


/* ===== REVIEW ITEM ===== */

.review-item-full {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.review-item-full:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-item-full .review-author-full {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.review-item-full .review-date-full {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 12px;
}


/* ===== FOOTER ===== */

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.footer-title em {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 0;
}

.footer-contact {
    margin-top: 30px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 6px 0;
    line-height: 1.6;
}

.footer-social {
    margin: 24px 0 30px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0;
}

.footer-bottom p > a {
    color: rgba(255, 255, 255, 0.4) !important;
}


/* ============================================================
     HOME PAGE SPECIFIC STYLES
     ============================================================ */


/* Hero Carousel */

.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 500px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 5;
}

.hero-welcome {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    padding: 16px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s;
    line-height: 1;
}

.carousel-arrow:hover {
    opacity: 1;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 28px;
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}


/* Spices banner */

.spices-banner {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.spices-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spices-banner .scroll-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    animation: bounce 2s infinite;
}


/* Home alternating sections */

.home-section {
    padding: 80px 40px;
    background: #f5f5f5;
}

.home-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.home-text {
    background: #fff;
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

.home-section.left .home-text {
    margin-right: -60px;
}

.home-section.right .home-text {
    margin-left: -60px;
    order: 2;
}

.home-section.right .home-image {
    order: 1;
}

.home-image {
    min-height: 400px;
}

.home-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.home-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 24px 0;
    color: var(--text);
}

.home-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.read-more-btn {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--accent);
}


/* Reviews section */

.reviews-home {
    padding: 80px 40px;
    background: #f5f5f5;
    text-align: center;
}

.reviews-home-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-kicker {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 4px;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0;
    color: var(--text);
}

.section-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.review-item-home {
    margin-bottom: 48px;
}

.review-author-home {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--muted);
    margin: 0 0 16px 0;
}

.review-text-home {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin: 0 0 24px 0;
}

.review-line-home {
    width: 160px;
    height: 1px;
    background: #e0e0e0;
    margin: 0 auto 16px;
}

.review-date-home {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
}


/* Why Book With Us */

.why-book-home {
    padding: 60px 40px;
    background: #fff;
}

.why-book-box-home {
    border: 1px solid #ccc;
    padding: 28px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-book-box-home h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 0 24px 0;
    color: var(--muted);
}

.why-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.check-item-home {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 8px 0;
}

.check-item-home::before {
    content: '\2713';
    color: var(--accent2);
    font-weight: 700;
    margin-right: 8px;
}

.kayak-wrap-home {
    text-align: center;
    margin-top: 40px;
}

.kayak-box-home {
    background: #ff6a00;
    color: #fff;
    padding: 20px 28px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
}

.kayak-box-home span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.kayak-box-home .kayak-logo-home {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.15em;
    background: #fff;
    color: #ff6a00;
    padding: 2px 8px;
    display: inline-block;
    margin: 4px 0;
}


/* CTA Banner - Parallax */

.home-cta {
    position: relative;
    overflow: hidden;
    height: 420px;
    background-image: url('https://p16-flow-image-sign.ibyteimg.com/tos-mya-i-3rsxbfecgb/rc_gen_image/c35b193bc56643fd8d3c918ff6d93a76.jpeg~tplv-0es2k971ck-image.image?rcl=2026091322172561617D29558F04A78C04&rk3s=8e244e95&rrcfp=02a80fc2&x-expires=1791901138&x-signature=A0Tu2Xh%2F6WVsxJDNcc99rOJs6cI%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.home-cta-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.home-cta-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.home-cta-highlight {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 8px 0;
}

.home-cta-text {
    font-size: 18px;
    margin: 0 0 8px 0;
    max-width: 800px;
}

.home-cta-contact {
    font-size: 18px;
    margin: 0 0 32px 0;
}

.book-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #fff;
    color: var(--text);
}


/* Our Favourites */

.favourites-home {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.favourites-home-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fav-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.fav-card-home {
    text-align: center;
}

.fav-image-home {
    overflow: hidden;
    margin-bottom: 20px;
}

.fav-image-home img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.fav-card-home:hover .fav-image-home img {
    transform: scale(1.05);
}

.fav-card-home h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
    color: var(--text);
}

.fav-card-home p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 20px 0;
}


/* Instagram section */

.instagram-home {
    padding: 60px 0 40px;
    background: #fff;
    text-align: center;
}

.ig-header-home {
    margin-bottom: 30px;
}

.ig-header-home svg {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    color: var(--text);
}

.ig-follow-home {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text);
    margin-left: 8px;
    vertical-align: middle;
}

.ig-on-home {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--muted);
    margin-top: 4px;
}

.ig-handle-home {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.ig-grid-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.ig-item-home {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.ig-item-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ig-item-home:hover img {
    transform: scale(1.08);
}

.ig-overlay-home {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.ig-item-home:hover .ig-overlay-home {
    opacity: 1;
}

.play-icon-home {
    width: 0;
    height: 0;
    border-left: 24px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}


/* ===== Reviews Slider ===== */

.review-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 280px;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    padding: 0 20px;
}

.review-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.review-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.review-dot:hover {
    background: var(--gold);
}

.review-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.review-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.review-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #fff;
}


/* Responsive for slider */

@media (max-width: 576px) {
    .review-slider {
        min-height: 340px;
    }
    .review-text-home {
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .review-slider {
        min-height: 380px;
    }
}

.ig-item-home.loading {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: ig-shimmer 1.5s infinite;
}

.ig-item-home.error {
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

@keyframes ig-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.ig-item-home a {
    display: block;
    width: 100%;
    height: 100%;
}

.ig-item-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


/* ============================================================
   Styled Alert / Notification Component
   ============================================================ */


/* Alert overlay backdrop */

.alert-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alert-backdrop.visible {
    opacity: 1;
    visibility: visible;
}


/* Alert dialog */

.alert-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    z-index: 9999;
    width: 90%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.alert-dialog.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


/* Alert header bar - color coded by type */

.alert-header {
    padding: 20px 24px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.alert-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon svg {
    width: 22px;
    height: 22px;
}

.alert-title {
    flex: 1;
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 0 0;
    line-height: 1.4;
}

.alert-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: -4px;
    margin-right: -4px;
}

.alert-close:hover {
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
}

.alert-close svg {
    width: 18px;
    height: 18px;
}


/* Alert body */

.alert-body {
    padding: 0 24px 20px;
    margin-left: 58px;
    /* align with title text (icon + gap) */
}

.alert-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}


/* Alert footer / actions */

.alert-footer {
    padding: 14px 24px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    margin-top: 4px;
}

.alert-btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.alert-btn.primary {
    background: var(--gold);
    color: #fff;
}

.alert-btn.primary:hover {
    background: #8a7048;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(160, 132, 92, 0.3);
}

.alert-btn.secondary {
    background: transparent;
    color: var(--muted);
    border: 1px solid #ddd;
}

.alert-btn.secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* Type-specific color schemes */

.alert-dialog.type-info .alert-icon {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.alert-dialog.type-success .alert-icon {
    background: rgba(22, 163, 74, 0.12);
    color: var(--accent2);
}

.alert-dialog.type-warning .alert-icon {
    background: rgba(234, 88, 12, 0.12);
    color: var(--accent);
}

.alert-dialog.type-error .alert-icon {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}


/* Inline alert (non-modal, appears in-page) */

.alert-inline {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: alertSlideIn 0.35s ease;
}

.alert-inline .alert-inline-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.alert-inline.type-info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.alert-inline.type-success {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.2);
    color: #166534;
}

.alert-inline.type-warning {
    background: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.2);
    color: #9a3412;
}

.alert-inline.type-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #991b1b;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 576px) {
    .alert-dialog {
        max-width: 92%;
        border-radius: 10px;
    }
    .alert-header {
        padding: 16px 18px 12px;
        gap: 12px;
    }
    .alert-body {
        padding: 0 18px 16px;
        margin-left: 52px;
    }
    .alert-footer {
        padding: 12px 18px 16px;
    }
    .alert-icon {
        width: 40px;
        height: 40px;
    }
    .alert-icon svg {
        width: 20px;
        height: 20px;
    }
    .alert-title {
        font-size: 16px;
    }
}


/* ============================================================
   Reviews Pagination
   ============================================================ */

.reviews-pagination-wrap {
    position: relative;
    min-height: 200px;
}

.review-item-full {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.review-item-full.pag-hidden {
    display: none;
}

.review-item-full.pag-fading {
    opacity: 0;
    transform: translateY(-8px);
}

.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: var(--muted);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 12px rgba(160, 132, 92, 0.25);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-info {
    font-size: 13px;
    color: var(--muted);
    margin: 0 12px;
    min-width: 80px;
    text-align: center;
}

@media (max-width: 576px) {
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    .pagination-info {
        font-size: 12px;
        margin: 0 6px;
        min-width: 60px;
    }
    .pagination-nav {
        gap: 6px;
    }
}

.text-center {
    text-align: center;
}


/* ============================================================
   Floating WhatsApp Chat Plugin
   ============================================================ */


/* Floating button */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: wa-bounce 2.5s infinite;
}

.whatsapp-btn:hover {
    background: #1ebe57;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}


/* Pulsing ring notification */

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2s infinite;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: wa-pulse 2s infinite 0.4s;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes wa-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}


/* Tooltip / label */

.whatsapp-label {
    background: #fff;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    order: -1;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}


/* Chat popup window */

.whatsapp-popup {
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    order: -1;
}

.whatsapp-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: #fff;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-avatar svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.whatsapp-popup-header-info {
    flex: 1;
}

.whatsapp-popup-header-info h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #fff;
}

.whatsapp-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: wa-pulse-dot 2s infinite;
}

@keyframes wa-pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.whatsapp-popup-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.whatsapp-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.whatsapp-popup-close svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}


/* Popup body - message bubble */

.whatsapp-popup-body {
    padding: 20px;
    background: #ece5dd;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c9b8' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    min-height: 80px;
}

.whatsapp-bubble {
    background: #fff;
    border-radius: 0 10px 10px 10px;
    padding: 12px 14px;
    max-width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    position: relative;
}

.whatsapp-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
}

.whatsapp-bubble-greeting {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 4px 0;
    font-weight: 600;
}

.whatsapp-bubble-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.whatsapp-bubble-time {
    font-size: 10px;
    color: var(--muted);
    text-align: right;
    margin-top: 6px;
}


/* Popup input + button */

.whatsapp-popup-footer {
    padding: 14px 20px 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.whatsapp-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: #fff;
    margin-bottom: 10px;
    resize: none;
    min-height: 44px;
    max-height: 100px;
    line-height: 1.4;
}

.whatsapp-input:focus {
    outline: none;
    border-color: #25d366;
}

.whatsapp-send-btn {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.whatsapp-send-btn:hover {
    background: #1ebe57;
}

.whatsapp-send-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}


/* Responsive */

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
    .whatsapp-popup {
        width: calc(100vw - 36px);
        position: fixed;
        bottom: 82px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .whatsapp-label {
        display: none;
    }
}


/* ============================================================
    RESPONSIVE BREAKPOINTS
    ============================================================ */


/* Large Tablets / Small Laptops: 1024px */

@media (max-width: 1024px) {
    .page-content,
    .contact-layout {
        padding: 50px 32px;
    }
    .gallery-grid {
        padding: 50px 32px;
    }
    .map-section {
        padding: 0 32px 50px;
    }
    nav {
        gap: 20px;
    }
    .nav-link {
        font-size: 11px;
    }
    .home-section,
    .favourites-home {
        padding: 60px 32px;
    }
    .reviews-home,
    .why-book-home {
        padding: 60px 32px;
    }
}


/* Tablets: 768px */

@media (max-width: 768px) {
    #main-header {
        padding: 16px 24px;
    }
    #main-header.scrolled {
        padding: 10px 24px;
    }
    .logo-title {
        font-size: 22px;
    }
    .logo-sub {
        font-size: 11px;
    }
    .nav-toggle {
        display: flex;
    }
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: #fff;
        margin-top: 12px;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    nav.open {
        display: flex;
    }
    .nav-link {
        color: var(--text) !important;
        padding: 14px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link:hover {
        background: #fafafa;
    }
    .nav-link.active {
        background: var(--gold);
        color: #fff !important;
    }
    .page-hero {
        height: 300px;
    }
    .page-hero-title h1::before,
    .page-hero-title h1::after {
        width: 20px;
        margin: 0 10px;
    }
    .page-content,
    .contact-layout {
        padding: 40px 24px;
    }
    .gallery-grid {
        padding: 40px 24px;
        grid-template-columns: repeat(2, 1fr);
    }
    .map-section {
        padding: 0 24px 40px;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-gallery {
        grid-template-columns: 1fr;
    }
    .about-gallery img {
        height: 250px;
    }
    .about-featured-img {
        margin-top: 40px;
        max-height: 350px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-title {
        font-size: 24px;
    }
    .footer-title em {
        font-size: 22px;
    }
    .footer-contact p {
        font-size: 13px;
    }
    /* Home page responsive */
    .hero {
        min-height: 400px;
    }
    .hero-welcome {
        font-size: 22px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .home-section-inner {
        grid-template-columns: 1fr;
    }
    .home-section.left .home-text,
    .home-section.right .home-text {
        margin: 0 0 -30px 0;
    }
    .home-section.right .home-text {
        order: 1;
    }
    .home-section.right .home-image {
        order: 2;
    }
    .home-text {
        padding: 40px 32px;
    }
    .home-section,
    .favourites-home {
        padding: 50px 24px;
    }
    .reviews-home,
    .why-book-home {
        padding: 50px 24px;
    }
    .fav-grid-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-title {
        font-size: 32px;
    }
    .home-cta {
        height: 360px;
        background-attachment: scroll;
    }
    .review-text-home {
        font-size: 16px;
    }
    .why-grid-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ig-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
    .ig-follow-home {
        font-size: 32px;
    }
    .ig-on-home {
        font-size: 18px;
    }
    .spices-banner {
        height: 160px;
    }
}


/* Large Phones: 576px */

@media (max-width: 576px) {
    #main-header {
        padding: 14px 16px;
    }
    #main-header.scrolled {
        padding: 8px 16px;
    }
    .logo-title {
        font-size: 20px;
    }
    .page-hero {
        height: 240px;
    }
    .page-hero-title h1 {
        font-size: 24px;
        letter-spacing: 0.08em;
    }
    .page-hero-title h1::before,
    .page-hero-title h1::after {
        display: none;
    }
    .page-content,
    .contact-layout {
        padding: 32px 16px;
    }
    .gallery-grid {
        padding: 32px 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    .map-section {
        padding: 0 16px 32px;
    }
    .map-placeholder {
        height: 280px;
        font-size: 13px;
    }
    .page-content h3 {
        font-size: 19px;
        margin-top: 24px;
    }
    .page-content h4 {
        font-size: 16px;
    }
    .page-content p {
        font-size: 14px;
    }
    .submit-btn {
        width: 100%;
        padding: 14px;
    }
    footer {
        padding: 40px 16px 24px;
    }
    .footer-title {
        font-size: 20px;
    }
    .footer-title em {
        font-size: 18px;
    }
    /* Home page */
    .hero {
        min-height: 320px;
    }
    .home-text {
        padding: 28px 20px;
    }
    .home-section,
    .favourites-home {
        padding: 32px 16px;
    }
    .reviews-home,
    .why-book-home {
        padding: 32px 16px;
    }
    .home-text h2 {
        font-size: 20px;
    }
    .section-title {
        font-size: 26px;
    }
    .home-cta {
        height: 300px;
        background-attachment: scroll;
    }
    .fav-image-home img {
        height: 220px;
    }
    .why-book-box-home {
        padding: 20px 16px;
    }
    .ig-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
    .ig-follow-home {
        font-size: 26px;
    }
    .ig-header-home svg {
        width: 44px;
        height: 44px;
    }
    .instagram-home {
        padding: 40px 0 24px;
    }
    .spices-banner {
        height: 120px;
    }
}


/* Small Phones: 400px */

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        aspect-ratio: 4/3;
    }
    .page-hero {
        height: 200px;
    }
    .page-hero-title h1 {
        font-size: 20px;
    }
    .about-gallery img {
        height: 200px;
    }
}