/* ============================================================
   GAMILA PANINI — GOLDEN FLAME THEME
   The most premium, most luxurious option.
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --gold: #D4A84B;
    --light-gold: #F5D78E;
    --dark-gold: #B8922A;
    --deep-red: #8B1A2B;
    --deep-red-hover: #A32236;
    --halal-green: #2E8B3C;
    --cream: #EDE8E0;
    --warm-white: #FAF7F2;
    --stone-gray: #8A7E72;
    --charcoal: #2C2821;
    --deep-dark: #0C0A08;
    --warm-dark: #100E0B;
    --card-dark: #141210;

    --gold-border: rgba(212, 168, 75, 0.2);
    --gold-border-hover: rgba(212, 168, 75, 0.7);
    --gold-glow: rgba(212, 168, 75, 0.12);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    background: var(--deep-dark);
    color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--deep-dark);
}

/* ========== SVG NOISE GRAIN OVERLAY ========== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--cream);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.4s ease;
}

a:hover {
    color: var(--light-gold);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== SECTION LABELS & TITLES ========== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title-gradient {
    background: linear-gradient(135deg, var(--light-gold), var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--stone-gray);
    max-width: 560px;
    margin: 0 auto;
}

/* ========== GOLD ORNAMENTAL DIVIDER ========== */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 0;
}

.divider-line {
    display: block;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    opacity: 0;
    animation: preloaderFadeIn 1s ease 0.2s forwards;
    filter: drop-shadow(0 0 30px rgba(212, 168, 75, 0.3));
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px auto 16px;
    animation: preloaderLineExpand 1.2s ease 0.6s forwards;
}

.preloader-text {
    display: block;
    opacity: 0;
    animation: preloaderFadeIn 0.8s ease 1s forwards;
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}

@keyframes preloaderLineExpand {
    to { width: 180px; }
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(12, 10, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.navbar-brand-logo {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.navbar-brand:hover .navbar-brand-logo {
    opacity: 0.85;
}

.navbar.scrolled .navbar-brand-logo {
    height: 40px;
}

.footer-brand-img {
    height: 70px;
    width: auto;
    margin-bottom: 4px;
}

.preloader-brand {
    width: 220px;
    height: auto;
    margin-top: 16px;
    opacity: 0;
    animation: preloaderFadeIn 0.8s ease 1s forwards;
}

.footer-brand .brand-group {
    margin-bottom: 16px;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--cream) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.4s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease, left 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-link-cta {
    border: 1px solid var(--gold) !important;
    border-radius: 4px;
    padding: 8px 24px !important;
    color: var(--gold) !important;
    background: transparent;
    margin-left: 12px;
    transition: all 0.4s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold) !important;
    color: var(--deep-dark) !important;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.toggler-line {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/hero-page1.png');
    background-size: 70% auto;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-color: #000;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Gold Particles Container */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.gold-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
    box-shadow: 0 0 6px rgba(212, 168, 75, 0.4);
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(30px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ========== CHI SIAMO ========== */
.section-chi-siamo {
    padding: 100px 0 80px;
    background: var(--deep-dark);
    overflow: hidden;
}

.about-images {
    position: relative;
    padding: 30px;
    overflow: hidden;
}

.about-img-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-img-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.about-img-float img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--deep-dark);
    padding: 14px 18px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
    z-index: 2;
}

.badge-top {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.badge-bottom {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    font-size: 18px;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* About Quote */
.about-quote {
    background: var(--card-dark);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 28px 32px;
    margin: 32px 0;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--gold);
    line-height: 0.5;
    position: absolute;
    top: 24px;
    left: 24px;
    opacity: 0.6;
}

.about-quote p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 19px;
    color: var(--cream);
    margin: 0 0 12px;
    padding-left: 30px;
    line-height: 1.6;
}

.quote-author {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 30px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--gold);
    color: var(--deep-dark);
    box-shadow: 0 0 20px rgba(212, 168, 75, 0.3);
}

.feature-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--cream);
    font-weight: 600;
}

.feature-text span {
    font-size: 14px;
    color: var(--stone-gray);
}

/* ========== IL NOSTRO STILE ========== */
.section-stile {
    padding: 80px 0 100px;
    background: var(--warm-dark);
    position: relative;
    overflow: hidden;
}

.stile-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 75, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.stile-card {
    padding: 40px 28px;
    transition: transform 0.5s ease;
}

.stile-card:hover {
    transform: translateY(-8px);
}

.stile-img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 28px;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 32px rgba(212, 168, 75, 0.15);
    transition: box-shadow 0.5s ease;
}

.stile-card:hover .stile-img-wrap {
    box-shadow: 0 12px 48px rgba(212, 168, 75, 0.3);
}

.stile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.stile-card:hover .stile-img-wrap img {
    transform: scale(1.08);
}

.stile-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.stile-card-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--stone-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.stile-card-text {
    font-size: 17px;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.7;
}

/* ========== MENU SECTION ========== */
.section-menu {
    padding: 80px 0 100px;
    background: var(--deep-dark);
    overflow: hidden;
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 28px;
    border: 1px solid var(--gold);
    border-radius: 40px;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
}

.menu-tab .bi {
    font-size: 6px;
    vertical-align: middle;
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-tab.active .bi,
.menu-tab:hover .bi {
    opacity: 1;
}

.menu-tab:hover {
    background: rgba(212, 168, 75, 0.1);
    border-color: var(--gold);
}

.menu-tab.active {
    background: var(--gold);
    color: var(--deep-dark);
    border-color: var(--gold);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Menu Card */
.menu-card {
    background: var(--card-dark);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease, transform 0.15s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 800px;
}

.menu-card:hover {
    border-color: var(--gold-border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 75, 0.06);
}

.menu-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 10px;
    width: calc(100% - 20px);
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 8px;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 18px 20px 24px;
}

.menu-card-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-card-desc {
    font-size: 15px;
    color: var(--stone-gray);
    line-height: 1.6;
    margin: 0;
}

/* 3D Tilt golden light reflection */
.menu-card .tilt-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.menu-card:hover .tilt-glow {
    opacity: 1;
}

/* Gold Outline Button */
.btn-gold-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--deep-dark);
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.25);
}

/* ========== GALLERIA ========== */
.section-galleria {
    padding: 80px 0 100px;
    background: var(--warm-dark);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:not(.gallery-item-large) img {
    height: 220px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 168, 75, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    font-size: 36px;
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ========== DOVE SIAMO ========== */
.section-dove-siamo {
    padding: 80px 0 100px;
    background: var(--deep-dark);
    overflow: hidden;
}

.contact-info {
    padding: 10px 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gold);
    color: var(--deep-dark);
}

.contact-card h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 16px;
    color: var(--stone-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-border), transparent);
}

.map-container {
    width: 100%;
    height: 440px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold-border);
    transition: border-color 0.4s ease;
}

.map-container:hover {
    border-color: var(--gold-border-hover);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========== FOOTER ========== */
.site-footer {
    padding: 80px 0 40px;
    background: var(--warm-dark);
    position: relative;
}

.footer-gold-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-phone-link {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone-link:hover {
    color: var(--gold);
}

.footer-brand > p {
    font-size: 14px;
    color: var(--stone-gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.footer-halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 139, 60, 0.15);
    border: 1px solid rgba(46, 139, 60, 0.3);
    border-radius: 6px;
    padding: 8px 14px;
    color: var(--halal-green);
    font-size: 14px;
    font-weight: 600;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 16px;
    color: var(--stone-gray);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--stone-gray);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Footer Flourish */
.footer-flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0 32px;
}

.flourish-line {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.flourish-ornament {
    color: var(--gold);
    font-size: 16px;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--stone-gray);
    margin: 0;
}

.footer-piva {
    font-size: 13px !important;
    margin-top: 4px !important;
    opacity: 0.6;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(12, 10, 8, 0.9);
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--deep-dark);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.3);
}

/* ========== GALLERY MODAL ========== */
#galleryModal .modal-content {
    background: var(--deep-dark);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
}

#galleryModal .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    opacity: 0.8;
    filter: invert(1);
}

#galleryModal .modal-body img {
    border-radius: 12px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========== RESPONSIVE ========== */

/* XL - 1199px */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 42px;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-img-main img {
        height: 380px;
    }
}

/* LG - 991px */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 36px;
    }

    .navbar-collapse {
        background: rgba(12, 10, 8, 0.98);
        padding: 24px;
        margin-top: 16px;
        border-radius: 8px;
        border: 1px solid var(--gold-border);
    }

    .navbar-nav {
        gap: 4px;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 12px;
        display: inline-block;
        text-align: center;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-images {
        margin-bottom: 40px;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item:not(.gallery-item-large) img {
        height: 200px;
    }

    .map-container {
        height: 360px;
    }
}

/* MD - 767px */
@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-chi-siamo,
    .section-stile,
    .section-menu,
    .section-galleria,
    .section-dove-siamo {
        padding: 60px 0 70px;
    }

    .hero-bg {
        background-size: 90% auto;
        background-position: center 40%;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-float {
        width: 140px;
        right: 10px;
        bottom: 10px;
    }

    .about-img-float img {
        height: 110px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .menu-tabs {
        gap: 10px;
    }

    .menu-tab {
        padding: 8px 20px;
        font-size: 14px;
    }

    .stile-img-wrap {
        width: 170px;
        height: 170px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: 1 / 3;
    }

    .divider-line {
        width: 80px;
    }

    .site-footer {
        padding: 60px 0 32px;
    }
}

/* SM - 575px */
@media (max-width: 575.98px) {
    .section-title {
        font-size: 26px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .navbar-brand-logo {
        height: 38px;
    }

    .footer-brand-img {
        height: 55px;
    }

    .preloader-brand {
        width: 180px;
    }

    .about-img-float {
        width: 120px;
        right: 5px;
        bottom: 5px;
    }

    .about-img-float img {
        height: 90px;
    }

    .about-images {
        padding: 15px;
    }

    .hero-bg {
        background-size: 100% auto;
        background-position: center 38%;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-card-img {
        height: 180px;
    }

    .menu-tabs {
        gap: 8px;
    }

    .menu-tab {
        padding: 7px 16px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-item img,
    .gallery-item:not(.gallery-item-large) img {
        height: 220px;
    }

    .about-quote {
        padding: 24px 20px;
    }

    .about-quote p {
        font-size: 17px;
        padding-left: 20px;
    }

    .quote-mark {
        font-size: 48px;
    }

    .stile-card {
        padding: 30px 16px;
    }

    .stile-img-wrap {
        width: 150px;
        height: 150px;
    }

    .btn-gold-outline {
        padding: 12px 28px;
        font-size: 14px;
    }

    .map-container {
        height: 280px;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
    }

    .gold-divider {
        padding: 28px 0;
    }

    .divider-line {
        width: 60px;
    }
}