/* ============================================================
   DALIA EVENTS BALLROOM — style.css
   ============================================================ */
 
/* ─── Skip link ─────────────────────────────────────────────── */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: #b49437; color: black;
    padding: 8px 16px; z-index: 9999;
    font-weight: bold; font-size: 14px;
    border-radius: 0 0 4px 0; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
 
/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; }
h1, h2, h3, .font-serif { font-family: 'Playfair Display', serif; }
.gold-gradient { background: linear-gradient(135deg, #d4af37 0%, #f1d592 50%, #d4af37 100%); }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
 
/* ─── Focus visible ─────────────────────────────────────────── */
*:focus-visible { outline: 2px solid #b49437; outline-offset: 3px; border-radius: 4px; }
 
/* ─── Font aliases ───────────────────────────────────────────── */
.font-dalia         { font-family: 'Great Vibes', cursive; }
.font-ballroom      { font-family: 'Cinzel', serif; }
.font-cinzel        { font-family: 'Cinzel', serif; }
.font-dalia-script  { font-family: 'Pinyon Script', cursive; }
.font-ballroom-hand { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
 
/* ─── WhatsApp float ────────────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; color: white;
    border-radius: 50px; font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100; padding: 12px 20px;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); }
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px; right: 15px;
        padding: 10px 16px; font-size: 22px;
        max-width: calc(100vw - 30px);
    }
}
 
/* ─── Scroll progress bar ───────────────────────────────────── */
#scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 2px;
    background: linear-gradient(90deg, #b49437, #d4b45a, #b49437);
    z-index: 99999;
    transition: width 0.1s linear;
    pointer-events: none;
}
 
/* ─── Back to Top ───────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 7rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d4b45a, #b49437);
    border: none;
    color: #0a0a0a;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(180,148,55,0.4);
    transition: background 0.3s, transform 0.3s, opacity 0.3s, box-shadow 0.3s;
}
#backToTop.visible {
    display: flex;
    opacity: 1;
}
#backToTop:hover {
    background: linear-gradient(135deg, #e8cc7a, #c9a94d);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(180,148,55,0.55);
}
#backToTop svg {
    width: 16px; height: 16px;
    transition: transform 0.3s;
}
#backToTop:hover svg { transform: translateY(-2px); }
 
/* ─── Mobile menu ───────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: #080808;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0;
    overflow-y: auto;
    /* Animație slide-in */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}
 
/* Linie decorativă gold sus */
.mobile-menu::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b49437, transparent);
}
 
/* Linie decorativă gold jos */
.mobile-menu::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b49437, transparent);
}
 
/* Logo în meniu mobil */
.mobile-menu-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}
.mobile-menu-logo span { color: #b49437; }
 
/* Separator ornamental */
.mobile-menu-divider {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180,148,55,0.5), transparent);
    margin: 0.25rem 0;
}
 
/* Link-uri */
.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 1rem 2rem;
    transition: color 0.25s, letter-spacing 0.25s;
    position: relative;
}
.mobile-menu a::after {
    content: '';
    position: absolute; bottom: 0.5rem; left: 50%; right: 50%;
    height: 1px; background: #b49437;
    transition: left 0.3s, right 0.3s;
}
.mobile-menu a:hover { color: #d4b45a; letter-spacing: 0.5em; }
.mobile-menu a:hover::after { left: 25%; right: 25%; }
 
/* Bloc adresă în meniu */
.mobile-menu-address {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(180,148,55,0.15);
    padding-top: 1.5rem;
    width: 200px;
}
.mobile-menu-address p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05em;
}
.mobile-menu-address a {
    font-family: 'Cinzel', serif !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.25em !important;
    color: #b49437 !important;
    padding: 0.25rem 0 !important;
}
.mobile-menu-address a::after { display: none !important; }
 
/* Butoane social în meniu */
.mobile-menu-social {
    display: flex; gap: 1rem;
    margin-top: 1.5rem;
}
.mobile-menu-social a {
    width: 40px !important; height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(180,148,55,0.3) !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    color: rgba(255,255,255,0.5) !important;
    transition: border-color 0.3s, background 0.3s !important;
}
.mobile-menu-social a:hover { border-color: #b49437 !important; background: rgba(180,148,55,0.1) !important; }
.mobile-menu-social a::after { display: none !important; }
 
/* Buton close */
.mobile-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(180,148,55,0.3);
    cursor: pointer; padding: 8px; color: #b49437;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: border-color 0.3s, background 0.3s;
}
.mobile-close:hover { border-color: #b49437; background: rgba(180,148,55,0.1); }
.hamburger-btn {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; color: #111;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
}
@media (max-width: 768px) {
    .hamburger-btn  { display: flex; }
    .desktop-nav    { display: none !important; }
    .desktop-social { display: none !important; }
}
 
/* ─── Hero animations ───────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 1.2s ease forwards; }
 
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 1.2s ease-out forwards; }
 
@keyframes title-focus {
    0%   { filter: blur(8px); opacity: 0; transform: translateY(10px); }
    100% { filter: blur(0);   opacity: 1; transform: translateY(0); }
}
.animate-title-focus {
    animation: title-focus 1.8s cubic-bezier(0.22,1,0.36,1) forwards;
    animation-delay: 0.9s;
}
 
@keyframes kenburns {
    from { transform: scale(1.08); }
    to   { transform: scale(1.18); }
}
.animate-ken-burns { animation: kenburns 20s infinite alternate; }
 
@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.animate-bounce-slow { animation: bounceSlow 3s ease-in-out infinite; }
 
/* ─── Gold text ─────────────────────────────────────────────── */
/* NOTĂ: gradient-text e eliminat conform design laws (ban absolut).
   Folosim culoare solidă gold. */
.text-exact-logo-gold { color: #B49437; }
 
/* ─── Gallery ───────────────────────────────────────────────── */
:root {
    --gold: #c5a059; --gold-dark: #a8863c; --gold-light: #e8d5a0;
    --cream: #fdfaf4; --white: #ffffff;
    --text-dark: #1a1612; --text-mid: #6b5e4a; --text-light: #a8977e;
    --border: rgba(197,160,89,0.2);
}
 
.gallery-section {
    position: relative; padding: 7rem 1.5rem 6rem;
    overflow: hidden; background: var(--white);
}
.gallery-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(197,160,89,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(197,160,89,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.gallery-section::after {
    content: ''; position: absolute;
    top: 0; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
 
.gallery-header { text-align: center; margin-bottom: 4rem; position: relative; }
.gallery-header .eyebrow {
    font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 1.2rem;
}
.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400; font-style: italic;
    color: var(--text-dark); line-height: 1.1; margin-bottom: 0.2rem;
}
.gallery-header h2 em { font-style: normal; color: var(--gold); }
.gallery-header .subtitle {
    font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300;
    letter-spacing: 0.18em; color: var(--text-light);
    text-transform: uppercase; margin-top: 1.4rem;
}
 
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 1.8rem; }
.ornament-line {
    width: 70px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light));
}
.ornament-line:last-child { background: linear-gradient(to left, transparent, var(--gold-light)); }
.ornament-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
 
.gallery-masonry { columns: 3; column-gap: 16px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 540px) { .gallery-masonry { columns: 1; } }
 
.gallery-card {
    break-inside: avoid; margin-bottom: 16px;
    position: relative; overflow: hidden; border-radius: 3px;
    cursor: pointer; display: block; background: #ede9e0;
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
}
.gallery-card.visible { opacity: 1; transform: translateY(0); }
.gallery-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.gallery-card::before {
    content: ''; position: absolute; inset: 0;
    border: 1px solid rgba(197,160,89,0); border-radius: 3px;
    z-index: 3; transition: border-color 0.35s ease; pointer-events: none;
}
.gallery-card:hover::before { border-color: rgba(197,160,89,0.5); }
.gallery-card img {
    width: 100%; display: block; object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.2,1,0.3,1); vertical-align: middle;
}
.gallery-card:hover img { transform: scale(1.07); }
 
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.1) 40%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.4rem 1.2rem;
}
.gallery-card:hover .card-overlay { opacity: 1; }
.card-label {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 0.95rem; color: rgba(255,255,255,0.92);
    letter-spacing: 0.04em; line-height: 1.35;
}
.card-sub {
    font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-light); margin-top: 4px;
}
.card-placeholder {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px; color: var(--text-light); padding: 2.5rem 1rem;
}
.card-placeholder svg { opacity: 0.4; }
.card-placeholder span {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0.6; text-align: center;
}
 
.gallery-cta { text-align: center; margin-top: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-text {
    font-family: 'Jost', sans-serif; font-size: 13px;
    font-weight: 300; letter-spacing: 0.12em; color: var(--text-light);
}
.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 0.35em; text-transform: uppercase;
    padding: 1rem 2.8rem; border: 1px solid var(--gold);
    background: transparent; color: var(--gold-dark); border-radius: 1px;
    cursor: pointer; text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    /* Reset pentru <button> */
    -webkit-appearance: none; appearance: none;
    font-family: 'Jost', sans-serif;
}
.cta-btn:hover { background: var(--gold); color: var(--white); box-shadow: 0 8px 28px rgba(197,160,89,0.28); }
.cta-btn:focus-visible { outline: 2px solid #b49437; outline-offset: 3px; }
.cta-btn svg { transition: transform 0.3s ease; }
.cta-btn:hover svg { transform: translateX(4px); }
 
/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(10,7,3,0.92); z-index: 9999;
    align-items: center; justify-content: center;
    flex-direction: column; padding: 2rem;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; animation: lbFadeIn 0.3s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 80vh; }
.lightbox img { display: block; max-width: 90vw; max-height: 75vh; object-fit: contain; border-radius: 2px; }
.lightbox-info { margin-top: 1.2rem; text-align: center; }
.lightbox-caption {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1rem; color: rgba(255,255,255,0.75);
}
.lightbox-counter {
    font-family: 'Jost', sans-serif; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold-light); margin-top: 6px;
}
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7); width: 44px; height: 44px;
    border-radius: 50%; font-size: 1.3rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s; line-height: 1;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8); width: 46px; height: 46px;
    border-radius: 50%; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.lightbox-nav:hover { background: rgba(197,160,89,0.2); border-color: var(--gold); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
@media (max-width: 600px) { .lightbox-prev { left: 0.5rem; } .lightbox-next { right: 0.5rem; } }
 
/* ─── Map GDPR placeholder (stiluri de bază, gdpr.js injectează restul) ── */
.gdpr-map-ph {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    width: 100%; height: 100%; min-height: 300px;
    border-radius: inherit;
}