/* ================================
   PALETĂ + BAZĂ
================================== */

:root {
    --bg: #15181d;
    --bg-soft: #1d2127;
    --card: #232831;
    --ink: #f9fafb;
    --muted: #9ca3af;
    --accent: #22c55e;
    --accent-soft: #4ade80;
    --danger: #f97373;
    --border: #2f3642;
    --script: "Allura", "Great Vibes", "Dancing Script", cursive;
    --sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #050814;
    color: var(--ink);
    font-family: var(--sans);
}

/* ================================
   LAYOUT GENERAL
================================== */

body.ds-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 100%);
    color: #f9fafb;
}

.ds-main {
    flex: 1;
    padding: 72px 0 80px;
}

.ds-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Titluri generice pentru pagini */

.ds-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 32px;
}

/* de siguranță – dacă ceva iese în afară */
body.ds-page {
    overflow-x: hidden;
}

/* ================================
   NAVBAR + BURGER
================================== */

.ds-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.ds-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.ds-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    color: #e5e7eb;
}

.ds-logo-main {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.ds-logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}

/* MENIU DESKTOP */

.ds-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ds-menu-link {
    text-decoration: none;
    color: #e5e7eb;
    opacity: 0.9;
    font-size: 0.92rem;
    position: relative;
    padding: 4px 0;
    transition: opacity 0.18s ease;
}

.ds-menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transition: width 0.18s ease-out;
}

.ds-menu-link:hover {
    opacity: 1;
}

.ds-menu-link:hover::after {
    width: 100%;
}

/* LIMBI */

.ds-lang {
    display: flex;
    gap: 10px;
}

.ds-lang a {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #e5e7eb;
    font-size: 13px;
    text-decoration: none;
}

.ds-lang-active {
    background: #22c55e;
    color: #020617 !important;
    border-color: #22c55e !important;
}

/* BURGER */

.ds-burger {
    display: none;
    width: 28px;
    height: 21px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.ds-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #e5e7eb;
    border-radius: 999px;
    transition: 0.25s ease;
}

.ds-burger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.ds-burger.open span:nth-child(2) {
    opacity: 0;
}

.ds-burger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ================================
   HERO HOME
================================== */

.ds-hero {
    text-align: center;
    padding: 20px 20px 40px;
}

.ds-hero-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.ds-hero-sub {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 26px;
    font-size: 15px;
}

.ds-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: radial-gradient(circle at top left, #16a34a, #166534);
    color: #ecfdf3;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ds-hero-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.55);
}

/* ================================
   HOME – CARDURI PENTRU SECȚIUNI
================================== */

.ds-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.ds-home-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    min-height: 260px;
    text-decoration: none;
    color: inherit;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ds-home-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.35s ease-out, filter 0.35s ease-out;
    filter: saturate(1.05) contrast(1.05);
}

.ds-home-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent 60%);
    pointer-events: none;
}

.ds-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.7);
}

.ds-home-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.1);
}

.ds-home-label {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: #f9fafb;
    z-index: 2;
}

.ds-home-label-main {
    font-family: var(--script);
    font-size: 32px;
}

.ds-home-label-sub {
    margin-top: 2px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.7);
}

/* ================================
   GALERIE FOTO – CARDURI PREMIUM
================================== */

/* grid general pentru pagină Foto */
.ds-gallery-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px 36px;
    justify-items: center;
}

.ds-gallery-card {
    width: 100%;
    max-width: 360px;
    text-decoration: none;
    color: inherit;
}

.ds-gallery-cover-link {
    display: block;
    width: 100%;
    height: 100%;
}

.ds-home-main {
    padding-top: 40px !important; /* înainte era 72px */
}



/* Rama mare + glow */

.ds-gallery-frame {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 32px;
    padding: 1px;
    background: radial-gradient(circle at top, #4f46e5 0, #111827 40%, #020617 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* imaginea de fundal a cardului */

.ds-gallery-cover {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 29px;
    overflow: hidden;
    background: #141724;
}

.ds-gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transform: scale(1.03);
    transition: filter 0.35s ease, transform 0.35s ease;
}

/* Pastilă sus cu nume + locație + social (poți pune FB/IG aici) */

.ds-gallery-pill {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.96);
    border-radius: 999px;
    padding: 10px 20px 12px;
    min-width: 70%;
    max-width: calc(100% - 48px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(148, 163, 184, 0.15);
    text-align: center;
}

.ds-gallery-name {
    font-family: var(--script);
    font-size: 24px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-gallery-location {
    margin-top: 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(148, 163, 184, 0.9);
}

/* Social icons în pastilă (FB/IG) */

.ds-gallery-socials {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.ds-social-btn {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ds-social-btn:hover {
    background: #22c55e;
    border-color: #bbf7d0;
    transform: translateY(-1px);
    color: #020617;
}

/* Hover pe întreg cardul */

.ds-gallery-card:hover .ds-gallery-frame {
    transform: translateY(-6px);
    background: radial-gradient(circle at top, #a855f7 0, #020617 40%, #000 100%);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.95);
}

.ds-gallery-card:hover .ds-gallery-cover img {
    filter: brightness(0.75);
    transform: scale(1.07);
}

/* ================================
   LAYOUT 2 COL (DESPRE / CONTACT)
================================== */

.ds-two-col {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: flex-start;
}

.ds-card {
    background: var(--card);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 22px 22px 20px;
}

.ds-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.ds-card p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--muted);
}

/* ================================
   FORMULARE
================================== */

.ds-form {
    display: grid;
    gap: 14px;
}

.ds-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.ds-input,
.ds-textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #374151;
    background: #020617;
    color: var(--ink);
    font-size: 14px;
}

.ds-input:focus,
.ds-textarea:focus {
    outline: none;
    border-color: var(--accent-soft);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.ds-textarea {
    min-height: 110px;
    resize: vertical;
}

.ds-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    color: #052e16;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.ds-btn-primary:hover {
    filter: brightness(1.05);
}

/* ================================
   CONTACT – LINKURI & SOCIAL
================================== */

/* Linie Facebook / Instagram din box-ul de contact */
.ds-contact-social {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.ds-contact-social strong {
    min-width: 80px;
    color: #e5e7eb;
}

/* linkuri de contact (telefon, whatsapp, email) */
.ds-contact-link {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.ds-contact-link:hover {
    text-decoration: underline;
}

/* pastila Facebook / Instagram */
.ds-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #f9fafb;              /* TEXT ALB */
    background: #111827;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.ds-social-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    opacity: .96;
}

/* cercul mic din stânga cu iconul */
.ds-social-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
}

/* forțăm SVG-ul să NU mai fie gigantic */
.ds-social-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* culori brand */
.ds-social-fb {
    background: #1877f2;
}

.ds-social-ig {
    background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
}

/* textul din pastilă */
.ds-social-text {
    color: #f9fafb;
}


/* ================================
   FOOTER
================================== */

.ds-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding: 16px 20px 22px;
    background: #020617;
}

.ds-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.ds-footer-sub {
    margin-top: 4px;
    font-size: 12px;
}

/* ================================
   ADMIN PLACEHOLDER
================================== */

.ds-admin-placeholder {
    text-align: center;
    padding: 70px 20px;
    color: var(--muted);
}

/* ================================
   RESPONSIVE
================================== */

/* ≥ 1200px – home 2 coloane, galerie auto-fit deja */

@media (max-width: 1200px) {
    .ds-home-grid {
        grid-template-columns: 1fr;
    }
}

/* ≤ 900px – 2 coloane devin 1 */

@media (max-width: 900px) {
    .ds-two-col {
        grid-template-columns: 1fr;
    }
}

/* ≤ 760px – burger ON, meniu slide */

@media (max-width: 760px) {
    .ds-main {
        padding-top: 60px;
    }

    .ds-nav-inner {
        padding-inline: 14px;
    }

    .ds-logo-main {
        font-size: 1.15rem;
    }

    .ds-logo-sub {
        font-size: 0.7rem;
    }

    .ds-burger {
        display: flex;
    }

    .ds-menu {
        position: fixed;
        right: 0;
        top: 58px;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 58px);
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(18px);
        border-left: 1px solid rgba(148, 163, 184, 0.25);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 18px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .ds-menu.open {
        transform: translateX(0);
    }

    .ds-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ds-home-card {
        min-height: 220px;
    }

    .ds-gallery-frame {
        height: 220px;
    }

    .ds-gallery-pill {
        min-width: 80%;
    }

    .ds-gallery-name {
        font-size: 20px;
    }
}

/* ≤ 480px – micro ajustări */

@media (max-width: 480px) {
    .ds-hero-title {
        font-size: 28px;
    }

    .ds-hero-sub {
        font-size: 14px;
    }

    .ds-home-label-main {
        font-size: 26px;
    }

    .ds-home-label-sub {
        font-size: 11px;
    }

    .ds-gallery-grid {
        gap: 26px;
    }

/*cntacte*/



}
