:root {
    --background: #0a0a0a;
    --foreground: #fafafa;
    --card: #1a1a1a;
    --card-foreground: #fafafa;
    --primary: #3d2914;
    --primary-foreground: #fafafa;
    --secondary: #2a2a2a;
    --secondary-foreground: #fafafa;
    --muted: #262626;
    --muted-foreground: #a3a3a3;
    --accent: #d4af37;
    --accent-foreground: #0a0a0a;
    --border: #404040;
    --input: #262626;
    --ring: #d4af37;
    --aromaze-section-card-height: 350px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    direction: rtl;
}

.font-serif {
    font-family: 'Amiri', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.nav {
    background-color: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.nav-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--card-foreground);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.3s;
}

.social-btn:hover {
    color: var(--accent);
}

.social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 24rem;
    background: linear-gradient(to left, rgba(61, 41, 20, 0.9), rgba(61, 41, 20, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/aromaze-banner.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 1.5rem;
}

/* Button */
.btn {
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
}

/* Sections */
.section {
    padding: 4rem 0rem;
}

.section-alt {
    background-color: rgba(26, 26, 26, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 3rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 0rem;
}

.grid-cols-5 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
    background-color: var(--card);
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--accent);
}

.card-content {
    padding: 1.5rem;
}

.card-center {
    text-align: center;
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-wrapper.large {
    width: 8rem;
    height: 8rem;
}

.icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
}

.icon-wrapper.large svg {
    width: 4rem;
    height: 4rem;
}


.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-description {
    color: var(--muted-foreground);
}

/* Badge */
.badge {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.badge-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

/* Product Cards */
.product-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 200px;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
}

.gallery-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contact */
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}

.contact-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info {
    color: var(--muted-foreground);
    text-align: center;
}

/* Social Media Cards */
.social-card {
    text-align: center;
}

.social-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
}

.qr-code {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 0.75rem;
    background-color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.75rem;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--accent-foreground);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: background-color 0.3s;
}

.scroll-top:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

.scroll-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Loading indicator */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--muted-foreground);
}

.logo {
    width: 2rem;
    height: 2rem;
}

h2 {
    margin-bottom: 16px;
}

.content-backdrop {
    background-color: #000000b0;
    flex-grow: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.content-backdrop:hover {
    background-color: #00000061;
}

.rounded {
    border-radius: 0.5rem;
}

.bg-center {
    background-size: cover; /* scale to fit inside */
    background-repeat: no-repeat;
    background-position: center
}

.chocolate-card {
    background-image: url('/images/C6151.00_00_03_29.Still004-square.png');
    height: var(--aromaze-section-card-height);
}

.coffee-card {
    background-image: url('/images/aromaze-coffee.jpg');
    height: var(--aromaze-section-card-height);
}

.gifts-card {
    background-image: url('/images/DSCF5443.JPG');
    height: var(--aromaze-section-card-height);
}

.icon {
    width: 3rem;
    height: 3rem;
}

.products-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 0;
}

.product-category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.products-list {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    padding: 2rem 8rem;
}

.products-list .card {
    opacity: 0.75;
}

.products-list .card:hover {
    opacity: 1.0;
}

.product-menu {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;

    opacity: 0.2;
    z-index: -1;
}

.product-section {
    position: relative;
    padding: 2rem 0;
}

.product-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;

    opacity: 0.2;
    z-index: -1;
}

.chocolate-menu {

}

.chocolate-section {
    background-image: url("/images/Copy of White and White Minimalist Coffee Cafe Menu (1).png");
}

.coffee-menu {
    background-image: url("/images/coffee-menu-bg.png");
}

.coffee-section {
    background-image: url("/images/coffee-menu-bg.png");
}

.product-card {
    cursor: pointer;
}

img.responsive {
    width: 100%; /* or any desired width */
    height: auto; /* lets the browser calculate height to keep ratio */
    display: block; /* removes small inline gaps */
}

.aspect-16-9 {
    position: relative;
    width: 100%;
}

.aspect-1-1 {
    position: relative;
    width: 100%;
}

.aspect-16-9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain, depending on your needs */
}

.aspect-1-1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain, depending on your needs */
}

.gallery-item.aspect-16-9 {
    width: 216px;
    height: 384px;
}

.gallery-item.aspect-1-1 {
    width: 250px;
    min-height: 275px;
    height: auto;
}

.gallery-item .gallery-content {
    position: absolute;
    bottom: 0;
    background-color: #00000045;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;

}

.shop-gallery .card {
    transform-origin: center;
    transition: transform 0.2s ease-in-out;
}

.shop-gallery .card:hover {
    transform: scale(1.05);
}

.shop-gallery {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}

.gallery-gift-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    max-width: 258px;
}

.gallery-gift-card .gallery-image,
.gallery-gift-card .gallery-image img {
    border-radius: 0rem;
}

.gift-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.note {
    background: transparent;
    color: #d4af37;
    border: none;
    padding: 0.125rem 0.375rem;
    font-size: 0.75rem;

}

.prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.125rem;
    flex-wrap: wrap;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.map-container {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.container.fill {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    min-width: 100%;
    flex-direction: column;
}

.container.fill .grid.grid-cols-2 {
    gap: 0;
}

.section.fill {
    padding: 0;
}

.curved {
    position: relative;
    background: #1a1a1a;
    height: 50px;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}

.desktop-title {
    color: #6b4a20;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.float-menu {
    position: fixed;
    top: 72px;
    width: 100%;
    height: 300px;
    display: none;
    z-index: 999999;
    background-color: #1a1a1a;
    border-bottom: 1px solid #a3a3a3;
    box-shadow: 1px -3px 30px -6px rgba(107,75,38,0.7);
    -webkit-box-shadow: 1px -3px 30px -6px rgba(107,75,38,0.7);
    -moz-box-shadow: 1px -3px 30px -6px rgba(107,75,38,0.7);
}

.float-menu .nav-links {
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-cols-5 {
        grid-template-columns: 1fr;
    }

    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .products-list {
        padding: 2rem 0.5rem;
    }

    .shop-gallery {
        gap: 0.5rem;
    }

    .desktop-title {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .float-menu.open {
        display: block;
    }

    .float-menu .nav-links {
        display: flex;
        flex-direction: column;
    }

    .gallery-gift-card {
        max-width: 100%;
        min-width: 100%;
    }

    .gallery-item.aspect-1-1{
        width: 100%;
    }

    .gallery-item.aspect-16-9 {
        width: 100%;
    }

    .gallery-image {
        width: 100%;
        height: 350px;
    }
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.tag {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

/* Hours card */
.hours-card {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.hours-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-list {
    color: var(--muted-foreground);
    text-align: center;
}

.hours-list p {
    margin-bottom: 0.5rem;
}

/* Social info */
.social-info {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 0.5rem;
}

.social-info p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-align: center;
}

.video-shell {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;   /* Change if you want a different default ratio */
    background: #000;        /* Nice letterbox while loading */
    overflow: hidden;
}

/* Make <video> fill its shell */
.video-shell > video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;     /* Show whole frame with letterboxing when needed */
}

/* Optional: let the video grow to the media’s own ratio after metadata loads */
.video-shell.auto-ratio { aspect-ratio: auto; }