/* Barbra's Kitchen - Main Styles (SCSS compiled to CSS) */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

/* ============= ROOT VARIABLES ============= */
:root {
    --primary-color: #ffd700;
    --secondary-color: #ff8c00;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ============= GLOBAL STYLES ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============= NAVIGATION ============= */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-white) !important;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ============= HERO SECTION ============= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.08), rgba(26, 26, 26, 0.08)), 
                url('../img/background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: #000;
}

/* ============= ABOUT SECTION ============= */
.about {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(10, 10, 10, 1));
    padding: 100px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: inline-block;
    padding: 15px 40px;
    /*border: 3px solid var(--primary-color);*/
    /*border-radius: var(--border-radius);*/
    margin-bottom: 30px;
    position: relative;
    /*background: rgba(255, 215, 0, 0.05);*/
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.3);
}

/* ============= SERVICES SECTION ============= */
.services {
    background: var(--dark-bg);
    padding: 100px 20px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ============= MENU SECTION ============= */
.menu {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(10, 10, 10, 1));
    padding: 100px 20px;
}

.menu-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.1);
    transition: left 0.5s ease;
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.menu-card:hover::after {
    left: 100%;
}

.menu-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.3rem;
}

.menu-card .price {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.menu-card input,
.menu-card button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: 'Josefin Sans', sans-serif;
    transition: var(--transition);
}

.menu-card input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.menu-card input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.location-picker {
    position: relative;
}

.location-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.location-tool-btn {
    width: auto !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 215, 0, 0.35) !important;
    background: rgba(255, 215, 0, 0.12) !important;
    color: var(--text-white) !important;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: none !important;
}

.location-tool-btn:hover {
    transform: none !important;
    background: rgba(255, 215, 0, 0.2) !important;
}

.location-selected-state {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: right;
    flex: 1;
}

.delivery-map {
    display: block;
    position: relative;
    width: 100%;
    min-height: 220px;
    height: 220px;
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.24);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
    z-index: 1;
    background: #121212;
}

.delivery-map.leaflet-container {
    background: #121212;
}

.delivery-map .leaflet-control-container .leaflet-control {
    margin: 10px;
}

.location-suggestions {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.location-suggestion-item {
    width: 100%;
    margin: 0 !important;
    padding: 12px 14px !important;
    text-align: left;
    border: none !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--text-white) !important;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    box-shadow: none !important;
}

.location-suggestion-item:last-child {
    border-bottom: none !important;
}

.location-suggestion-item:hover {
    background: rgba(255, 215, 0, 0.12) !important;
    transform: none !important;
}

.location-suggestion-item.is-empty {
    color: rgba(255, 255, 255, 0.55) !important;
    cursor: default;
}

.location-help {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
}

.menu-card button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 15px;
}

.menu-card button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* ============= CONTACT SECTION ============= */
.contact {
    background: var(--dark-bg);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 8s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-bg 10s ease-in-out infinite reverse;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-method {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 140, 0, 0.04));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25);
}

.contact-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-method:hover i {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary-color);
}

.contact-method h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-method p,
.contact-method a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--primary-color);
}

/* ============= FOOTER ============= */
footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.9));
    border-top: 3px solid var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .location-map-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .location-selected-state {
        text-align: left;
    }

    .delivery-map {
        min-height: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.menu-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 5px 30px;
    -webkit-overflow-scrolling: touch;
}

/* hide scrollbar */
.menu-slider::-webkit-scrollbar {
    display: none;
}

.menu-slide {
    flex: 0 0 33.333%; /* 3 per row desktop */
    scroll-snap-align: start;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* card styling stays same */
.menu-card {
    background: #1e1e1e;
    padding: 15px;
    border-radius: 15px;
    height: 100%;
}

/* MOBILE: 1 item per screen */
@media (max-width: 768px) {
    .menu-slide {
        flex: 0 0 100%;
    }
}

/* subtle blur effect for edge items */
.menu-slide {
    /*opacity: 0.7;*/
    transform: scale(0.95);
}

.menu-slide:focus-within,
.menu-slide:hover {
    opacity: 1;
    transform: scale(1);
}

/* optional fade edges effect */
.menu-slider::before,
.menu-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.menu-slider {
    position: relative;
}

.menu-slider::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.menu-slider::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.menu-slider::before,
.menu-slider::after {
    display: none;
}

.menu-filters {
    max-width: 400px;
    margin: 0 auto 20px;
}

.price-filter {
    display: flex;
    gap: 10px;
}

.sticky-filters {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #111;
    padding: 12px;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-row input {
    flex: 1;
    min-width: 140px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1c1c1c;
    color: #fff;
    padding-bottom: 5px;
}

.filter-row input:focus {
    outline: none;
    border-color: #ff8c00;
}

.btn-filter {
    background: #ff8c00;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
}

.btn-clear {
    background: #333;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    border: none;
}

.btn-filter:hover, .btn-clear:hover {
    opacity: 0.85;
}

/* No results animation */
.no-results {
    text-align: center;
    padding: 40px;
    color: #fff;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.filter-row input::placeholder {
    color: #fff;
    opacity: 1;
}

/* ================= CONTACT PREMIUM ================= */
.luxury-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #111, #1a1a1a);
    position: relative;
}

.premium-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #bbb;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.08);
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #111;
    flex-shrink: 0;
}

.contact-card h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 18px;
}

.contact-card a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
}

.contact-card a:hover {
    color: #ffd700;
}

.contact-map-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-map-card iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ================= PREMIUM FOOTER ================= */
.premium-footer {
    background: #0d0d0d;
    padding: 60px 0 25px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #999;
    max-width: 500px;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: #ffd700;
    color: #111;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .luxury-contact {
        padding: 70px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-map-card iframe {
        height: 280px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}

/* ================= ARTISTIC SERVICES ================= */
.artistic-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #121212, #1a1a1a);
}

.services-subtitle {
    max-width: 700px;
    margin: auto;
    color: #bbb;
    font-size: 18px;
    border: none;
}

.services-art-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    align-items: stretch;
}

.service-side-stack {
    display: grid;
    gap: 25px;
}

.service-feature {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 280px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    transition: all 0.4s ease;
}

.service-feature.large {
    min-height: 590px;
}

.service-feature:hover {
    transform: translateY(-8px) scale(1.01);
}

.service-image-wrap {
    width: 100%;
    height: 100%;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-feature:hover img {
    transform: scale(1.08);
}

.service-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.15));
}

.service-overlay-content span {
    color: #ffd700;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.service-overlay-content h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-feature.small .service-overlay-content h3 {
    font-size: 24px;
}

.service-overlay-content p {
    color: #ddd;
    max-width: 90%;
    line-height: 1.7;
    margin: 0;
}

/* MOBILE */
@media (max-width: 992px) {
    .services-art-layout {
        grid-template-columns: 1fr;
    }

    .service-feature.large {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .artistic-services {
        padding: 70px 0;
    }

    .service-feature,
    .service-feature.large {
        min-height: 280px;
    }

    .service-overlay-content {
        padding: 25px;
    }

    .service-overlay-content h3 {
        font-size: 22px;
    }
}

/* ================= CINEMATIC ABOUT ================= */
.cinematic-about {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f, #171717);
    position: relative;
}

.about-visual-story {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.about-visual-story img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-visual-story:hover img {
    transform: scale(1.04);
}

.floating-story-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    padding: 25px;
    /*border-radius: 22px;*/
    /*border: 1px solid rgba(255,255,255,0.08);*/
}

.floating-story-card span {
    color: #ffd700;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.floating-story-card h4 {
    color: #fff;
    margin: 10px 0;
    font-size: 24px;
}

.floating-story-card p {
    color: #ddd;
    margin: 0;
    line-height: 1.7;
}

.about-story-content {
    padding-left: 20px;
}

.about-story-content .section-title {
    margin: 20px 0;
}

.about-story-content p {
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /*background: rgba(255, 215, 0, 0.08);*/
    padding: 16px 22px;
    /*border-radius: 40px;*/
    color: #ffd700;
    font-weight: 600;
    /*border: 1px solid rgba(255,215,0,0.15);*/
    font-style: italic;
}

.about-signature i {
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 992px) {
    .about-visual-story img {
        height: 500px;
    }

    .about-story-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .cinematic-about {
        padding: 70px 0;
    }

    .about-visual-story img {
        height: 380px;
    }

    .floating-story-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 20px;
    }

    .floating-story-card h4 {
        font-size: 20px;
    }
}