/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header/Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 2rem 0 2rem;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 30%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 1.5rem 3rem;
    background-color: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 1rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 300;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-cta {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    bottom: 60px
}

.hero-headline {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    margin-top: 40px;
    letter-spacing: 2px;
    color: #fff;

}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ccc;
    opacity: 0.9;

}

.cta-button {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-button:hover {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Brand Introduction Section */
.brand-intro {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.brand-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-headline {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.brand-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d2d2d;
    opacity: 0.9;
    font-family: 'Georgia', serif;
}

/* Outlets Showcase Section */
.outlets-showcase {
    padding: 2rem 2rem;
    background-color: #f8f8f8;
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.outlet-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.outlet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.outlet-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1.1);
    transition: transform 0.3s, filter 0.3s;
}

.outlet-card:hover .outlet-image {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.outlet-label {
    position: absolute;
    bottom: 1.5rem;
    left: 0.5rem;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* Our Story Section */
.our-story {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.story-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(1.1);
}

.story-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
}

.story-headline {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.story-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    display: inline-block;
    font-weight: 500;
}

.story-link:hover {
    opacity: 0.7;
}

/* Experience Section */
.experience-section {
    padding: 0rem 2rem 5rem;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.experience-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.experience-text {
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.experience-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.experience-item-wide {
    grid-column: span 2;
}

.experience-item-tall {
    grid-row: span 2;
}

.experience-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.experience-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-item:hover .experience-image {
    transform: scale(1.15);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-item:hover .experience-overlay {
    opacity: 1;
}

.experience-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.experience-item:hover .experience-content {
    transform: translateY(0);
}

.experience-caption {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.experience-item-large .experience-caption,
.experience-item-wide .experience-caption {
    font-size: 2rem;
}

.experience-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.experience-item-large .experience-description,
.experience-item-wide .experience-description {
    font-size: 1.2rem;
}

/* Footer Section */
.footer {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    padding: 5rem 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-list a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.5);
}

.footer-list a:hover {
    color: #ffffff;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-list a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s;
}

.contact-item:hover .contact-details p {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-item {
        font-size: 0.85rem;
    }

    .brand-intro-content {
        grid-template-columns: 1fr;
    }

    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .experience-item-large {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 300px;
    }

    .experience-item-wide {
        grid-column: span 2;
    }

    .experience-item-tall {
        grid-row: span 2;
        min-height: 300px;
    }

    .experience-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.25rem;
        margin: 0.75rem;
        border-radius: 8px;
    }

    .hero-section {
        padding: 0px
    }

    .logo-img {
        height: 50px;
    }

    .hero-content {
        bottom: 0px;
        /* bottom: 182px; */
    }
    .hero-section {
    position: relative;
    min-height: 1vh;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* padding: 2rem 2rem 0 2rem; */
    overflow: hidden;
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-left: 0rem !important;
    padding-right: 0rem;
}

.story-headline {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    margin-bottom: 1px;
    font-family: 'Georgia', serif;
}

.our-story {
    position: relative;
    min-height: 1px;
    display: flex;
    align-items: center;
    padding: 4rem 0rem;
    margin: 4rem 0;
}

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -104%;
        width: 100%;
        /* Change to full width for better mobile UX */
        /* height: 100vh; */
        background-color: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        align-items: center;
        /* Center items */
        justify-content: center;
        padding: 1rem;
        gap: 1rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(15px);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
        z-index: 999;
    }

    .nav-item {
        width: auto;
        padding: 0.5rem 0;
        border-bottom: none;
        font-size: 1.25rem;
        /* Larger text for mobile menu */
        text-align: center;
    }

    .nav-cta {
        width: auto;
        padding: 1rem 3rem;
        margin-top: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        gap: 5px;
        /* Ensure gap for animation */
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .outlets-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .experience-item-large,
    .experience-item-wide,
    .experience-item-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }

    .experience-title {
        font-size: 2rem;
    }

    .experience-text {
        font-size: 1rem;
    }

    .experience-overlay {
        opacity: 1;
        padding: 1.5rem;
    }

    .experience-caption {
        font-size: 1.2rem;
    }

    .experience-item-large .experience-caption,
    .experience-item-wide .experience-caption {
        font-size: 1.5rem;
    }

    .story-content {
        padding-left: 2rem;
    }

    .brand-headline {
        font-size: 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-list a:hover {
        padding-left: 0;
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .brand-headline {
        font-size: 1.5rem;
    }

    .footer-main {
        padding: 4rem 1.5rem 2rem;
    }
}

/* ========================================
   SPICEBAE PAGE STYLES
======================================== */

.spicebae-page {
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Spicebae Navigation */
.spicebae-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spicebae-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Simple Hero Section */
.spicebae-hero-simple {
    margin-top: 80px;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.spicebae-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Overlay Content */
.spicebae-hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Breadcrumb */
.spicebae-breadcrumb {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.spicebae-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.spicebae-breadcrumb a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Title Overlay */
.spicebae-hero-title-overlay {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin: 0;
    font-family: 'Georgia', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Scroll Indicator */
.spicebae-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spicebae-scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-icon {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-icon svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


.spicebae-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Content Section */
.spicebae-main-content {
    padding: 4rem 0;
    background: #ffffff;
}

.spicebae-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Text Content */
.spicebae-text-content {
    padding-right: 2rem;
}

.spicebae-page-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0 0 1rem;
    font-family: 'Georgia', serif;
}

.spicebae-tagline {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.spicebae-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0 0 2rem;
    line-height: 1.4;
}

.spicebae-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.spicebae-highlight-text {
    padding: 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #1a1a1a;
    font-style: italic;
}

.spicebae-features-list {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.spicebae-features-list h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
}

.spicebae-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spicebae-features-list li {
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spicebae-features-list li:last-child {
    border-bottom: none;
}

/* Sidebar Content */
.spicebae-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spicebae-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spicebae-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.spicebae-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 1.5rem 1.5rem 1rem;
}

.spicebae-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.spicebae-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spicebae-card:hover .spicebae-card-image img {
    transform: scale(1.05);
}

.spicebae-social-handle {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.spicebae-address {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding: 0 1.5rem 1rem;
}

.spicebae-map {
    height: 250px;
    overflow: hidden;
}

.spicebae-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Simple Gallery Section */
.spicebae-gallery-simple {
    padding: 4rem 0;
    background: #f9fafb;
}

.spicebae-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 3rem;
    font-family: 'Georgia', serif;
}

.spicebae-gallery-grid-simple {
        display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 0fr));
    gap: 0.5rem;
}

.spicebae-gallery-item-simple {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.spicebae-gallery-item-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.spicebae-gallery-item-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spicebae-gallery-item-simple:hover img {
    transform: scale(1.1);
}

/* Responsive Design for Spicebae */
@media (max-width: 1024px) {
    .spicebae-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spicebae-text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .spicebae-nav-container {
        padding: 1rem;
    }

    .spicebae-hero-simple {
        height: 40vh;
        min-height: 300px;
    }

    .spicebae-breadcrumb {
        font-size: 0.75rem;
        top: 1rem;
        padding: 0 1rem;
    }

    .spicebae-hero-title-overlay {
        font-size: 2.5rem;
    }

    .scroll-text {
        font-size: 0.75rem;
    }

    .spicebae-scroll-indicator {
        bottom: 1.5rem;
    }

    .spicebae-main-content {
        padding: 3rem 0;
    }

    .spicebae-page-title {
        font-size: 2rem;
    }

    .spicebae-subtitle {
        font-size: 1.5rem;
    }

    .spicebae-gallery-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .spicebae-breadcrumb {
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .breadcrumb-separator {
        font-size: 1rem;
    }

    .spicebae-hero-title-overlay {
        font-size: 2rem;
    }

    .spicebae-page-title {
        font-size: 1.75rem;
    }

    .spicebae-subtitle {
        font-size: 1.3rem;
    }

    .spicebae-description p {
        font-size: 1rem;
    }

    .spicebae-gallery-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MEDIA GALLERY & MODAL STYLES
======================================== */

.media-filter-tabs {
    display: none;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.8rem 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-tab:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-tab.active {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.media-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-icon {
    font-size: 2rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.media-item:hover .media-icon {
    transform: scale(1);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modal Popup */
.media-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-modal.active {
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    z-index: 2200;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image,
.modal-video {
    max-width: 100%;
    max-height: 80vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.modal-caption {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Featured Video Section */
.spicebae-video-feature {
    padding: 0rem 0;
    background: #ffffff;
}

.video-feature-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.video-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
}

.video-preview-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
}

.video-preview-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon-large .play-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

@media (max-width: 991px) {
    .video-feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .spicebae-section-title {
        text-align: center !important;
    }
}
.only-margin {
    margin: -10px 4px 15px 23px;
}
.media-margin{
     margin: 1px 0px 0px 0px;
     text-align: center;
}
.bread-my{
    color: white;
    font-size: 25px;
}
.image-size {
    height: 25rem ;
    width: 40rem;
    margin-top: 8rem;
    border-radius: 15px;
}
@media (max-width: 768px){
.bread-my{
    color: white;
    font-size: 16px;
    text-align: center;
}
.image-size {
  
    margin-top: 0rem;
}
}