
Copy

/* ============================================================
   DALIA EVENTS BY FOREST — style.forest.css
   ============================================================ */
 
html { scroll-behavior: smooth; }
 
:root {
    --bg-beige:      #fdfaf5;
    --section-beige: #f5f1e8;
    --accent-blue:   #8ba9bd;
    --deep-blue:     #4a6373;
    --text-main:     #3a3a3a;
    --border-gold:   rgba(139,169,189,0.25);
}
 
*, *::before, *::after { box-sizing: border-box; }
 
body {
    margin: 0; padding: 0;
    background-color: var(--bg-beige);
    color: var(--text-main);
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
 
/* ── Font aliases ── */
.font-barlow      { font-family: 'Barlow', sans-serif; }
.font-instrument  { font-family: 'Instrument Serif', serif; }
 
/* ── Focus visible ── */
*:focus-visible { outline: 2px solid var(--accent-blue); outline-offset: 3px; border-radius: 4px; }
 
/* ── Utilities ── */
.text-accent-blue  { color: #8ba9bd !important; }
.bg-accent-blue    { background-color: #8ba9bd !important; }
.bg-deep-blue      { background-color: #4a6373 !important; }
.border-accent-blue { border-color: #8ba9bd !important; }
.hover\:text-accent-blue:hover { color: #8ba9bd !important; }
 
/* ── Nav ── */
.nav-glass {
    background: rgba(253,250,245,0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(139,169,189,0.5);
}
 
/* ── Mobile menu RESTYLED ── */
#mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: #fdfaf5;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0; overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { display: flex; transform: translateX(0); }
 
#mobile-menu::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}
#mobile-menu::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}
 
/* Close button */
#close-menu {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(139,169,189,0.4);
    cursor: pointer; padding: 8px; color: #8ba9bd !important;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; transition: border-color 0.3s, background 0.3s;
}
#close-menu:hover { border-color: #8ba9bd !important; background: rgba(139,169,189,0.08); }
 
/* Logo */
.mobile-menu-logo {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic; font-size: 1.6rem;
    color: #4a6373 !important; text-align: center;
    line-height: 1.2; margin-bottom: 2rem;
}
.mobile-menu-logo span { color: #8ba9bd !important; }
.mobile-menu-logo small {
    display: block; font-family: 'Barlow', sans-serif;
    font-size: 0.55rem; font-style: normal;
    letter-spacing: 0.5em; text-transform: uppercase;
    color: #8ba9bd !important; margin-top: 4px;
}
 
/* Separator */
.mobile-menu-divider {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,169,189,0.5), transparent);
    margin: 0.25rem 0;
}
 
/* Link-uri */
#mobile-menu a {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: #4a6373 !important; text-decoration: none;
    padding: 1rem 2rem; position: relative;
    transition: color 0.25s, letter-spacing 0.25s;
}
#mobile-menu a::after {
    content: ''; position: absolute; bottom: 0.5rem;
    left: 50%; right: 50%; height: 1px;
    background: #8ba9bd;
    transition: left 0.3s, right 0.3s;
}
#mobile-menu a:hover { color: #8ba9bd !important; letter-spacing: 0.5em; }
#mobile-menu a:hover::after { left: 20%; right: 20%; }
 
/* Adresă */
.mobile-menu-address {
    margin-top: 2rem; text-align: center;
    border-top: 1px solid rgba(139,169,189,0.2);
    padding-top: 1.5rem; width: 220px;
}
.mobile-menu-address p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic; font-size: 0.8rem;
    color: rgba(74,99,115,0.75); line-height: 1.8; margin: 0;
}
.mobile-menu-address a {
    display: inline-block; margin-top: 0.75rem;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
    color: #8ba9bd !important !important;
    font-weight: 700 !important;
    padding: 0.25rem 0 !important;
}
.mobile-menu-address a::after { display: none !important; }
 
/* Social */
.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(139,169,189,0.6) !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important; padding: 0 !important;
    font-size: 0 !important; letter-spacing: 0 !important;
    color: #8ba9bd !important !important;
    transition: border-color 0.3s, background 0.3s !important;
}
.mobile-menu-social a:hover {
    border-color: #8ba9bd !important !important;
    background: rgba(139,169,189,0.1) !important;
    color: #4a6373 !important !important;
}
.mobile-menu-social a::after { display: none !important; }
 
/* Close button */
#close-menu {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none;
    border: 1px solid rgba(139,169,189,0.3);
    cursor: pointer; padding: 8px; color: #8ba9bd !important;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px; transition: border-color 0.3s, background 0.3s;
}
#close-menu:hover { border-color: #8ba9bd !important; background: rgba(139,169,189,0.1); }
 
/* Separator */
.mobile-menu-divider {
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,169,189,0.4), transparent);
    margin: 0.25rem 0;
}
 
/* Link-uri */
#mobile-menu a {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); text-decoration: none;
    padding: 1rem 2rem; position: relative;
    transition: color 0.25s, letter-spacing 0.25s;
}
#mobile-menu a::after {
    content: ''; position: absolute; bottom: 0.5rem;
    left: 50%; right: 50%; height: 1px;
    background: #8ba9bd;
    transition: left 0.3s, right 0.3s;
}
#mobile-menu a:hover { color: #8ba9bd !important; letter-spacing: 0.5em; }
#mobile-menu a:hover::after { left: 20%; right: 20%; }
 
/* Adresă */
.mobile-menu-address {
    margin-top: 2rem; text-align: center;
    border-top: 1px solid rgba(139,169,189,0.15);
    padding-top: 1.5rem; width: 220px;
}
.mobile-menu-address p {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic; font-size: 0.8rem;
    color: rgba(255,255,255,0.35); line-height: 1.8; margin: 0;
}
.mobile-menu-address a {
    display: inline-block; margin-top: 0.75rem;
    font-family: 'Barlow', sans-serif !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.2em !important;
    color: #8ba9bd !important !important;
    padding: 0.25rem 0 !important;
}
.mobile-menu-address a::after { display: none !important; }
 
/* Social */
.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(139,169,189,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: #8ba9bd !important !important;
    background: rgba(139,169,189,0.1) !important;
    color: white !important;
}
.mobile-menu-social a::after { display: none !important; }
 
/* Hamburger lines */
.hamburger-line {
    display: block;
    width: 22px; height: 2px;
    background: var(--deep-blue);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
}
#hamburger.open .line-1 { transform: translateY(7px) rotate(45deg); }
#hamburger.open .line-2 { opacity: 0; transform: scaleX(0); }
#hamburger.open .line-3 { transform: translateY(-7px) rotate(-45deg); }
 
/* ── Gallery cards ── */
.work-card {
    transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
    background-color: #ffffff;
    border: 1px solid var(--section-beige);
}
.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(139,169,189,0.15);
    border-color: #8ba9bd !important;
}
.card-desc {
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}
@media (hover: none) { .card-desc { opacity: 1; } }
.work-card:hover .card-desc { opacity: 1; }
 
/* ── Scroll progress bar (de la gdpr.js / style.css global) ── */
#scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--deep-blue));
    z-index: 99999;
    transition: width 0.1s linear;
    pointer-events: none;
}
 
/* ── Scroll to top ── */
#scroll-top {
    position: fixed;
    bottom: 2rem; right: 1.5rem; z-index: 50;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--deep-blue);
    color: white; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(12px);
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(74,99,115,0.3);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: #8ba9bd; }
 
/* ── Footer social ── */
.footer-social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(139,169,189,0.25);
    display: flex; align-items: center; justify-content: center;
    color: #8ba9bd !important; text-decoration: none;
    transition: all 0.3s ease; background: transparent;
    min-width: 44px; min-height: 44px;
}
.footer-social-btn:hover { color: white; }
.footer-social-fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-ig:hover { background: #E4405F; border-color: #E4405F; }
.footer-social-tt:hover { background: var(--deep-blue); border-color: #4a6373 !important; }
 
/* ── Hero animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-line-1 { animation: fadeUp 0.9s ease both; }
.hero-line-2 { animation: fadeUp 0.9s 0.15s ease both; }
.hero-sub    { animation: fadeUp 0.9s 0.3s ease both; }
.hero-cta    { animation: fadeUp 0.9s 0.45s ease both; }
 
/* ── GDPR map placeholder ── */
.gdpr-map-ph {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    width: 100%; height: 100%; min-height: 420px;
    background: #111; border-radius: inherit;
    cursor: pointer; transition: background 0.3s;
}
.gdpr-map-ph:hover { background: #1a1a1a; }
 
/* ── Responsive ── */
@media (max-width: 768px) {
    #scroll-top { bottom: 1.5rem; right: 1rem; }
}
 
/* ── HERO MOBILE ── */
@media (max-width: 768px) {
    /* Elimină spațiul gol de sub hero */
    section#acasa {
        min-height: 100svh !important;   /* safe-area aware */
        padding-bottom: 3rem !important;
    }
 
    /* Gradient de tranziție mai scurt — elimină zona albă de jos */
    section#acasa .absolute.bottom-0 {
        height: 5rem !important;
    }
 
    /* Titlu hero mai mic pe mobil */
    .hero-line-1 {
        font-size: 2rem !important;
        letter-spacing: 0.05em !important;
    }
    .hero-line-2 {
        font-size: clamp(2.8rem, 12vw, 5rem) !important;
        line-height: 1 !important;
        margin-top: 0.5rem !important;
    }
 
    /* Subtitlu mai compact */
    .hero-sub {
        font-size: 1rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
 
    /* Butoane CTA stivuite frumos */
    .hero-cta {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 0 1rem !important;
    }
    .hero-cta a {
        width: 100% !important;
        justify-content: center !important;
    }
 
    /* Scroll indicator mai sus */
    section#acasa .absolute.bottom-10 {
        bottom: 1.5rem !important;
    }
}
 
/* ── DESPRE SECTION MOBILE ── */
@media (max-width: 768px) {
    /* Titlul h2 nu iese din ecran */
    #despre h2.font-instrument {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.15 !important;
    }
 
    /* Padding mai mic pe secțiuni */
    #despre,
    #galerie,
    #facilitati,
    #locatie {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
 
    /* Containerul video/imagine din Despre */
    #despre .relative video,
    #despre .relative img {
        border-radius: 1rem !important;
    }
 
    /* Badge-ul "Natură" ascuns pe mobil (iese din ecran) */
    #despre .absolute.-bottom-10 {
        display: none !important;
    }
 
    /* Facilitati grid 2 coloane pe mobil */
    #facilitati .grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    #facilitati .p-6 {
        padding: 1rem !important;
    }
}