:root {
    --lb-ocean: #0d3b66;
    --lb-turquoise: #2cbcc6;
    --lb-sand: #e9d8a6;
    --lb-mist: #eff8fa;
    --lb-ink: #1f2933;
    --lb-muted: #667085;
    --lb-border: #e6e1d6;
    --lb-danger: #b42318;
    --lb-warning: #d99a2b;
    --lb-success: #2f855a;
    --lb-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: var(--lb-ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.65;
}

h1,
h2,
h3,
.brand-font {
    color: var(--lb-ocean);
    font-family: Lora, Georgia, serif;
    letter-spacing: 0;
}

a {
    color: var(--lb-ocean);
}

a:hover {
    color: #0a5876;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
    backdrop-filter: blur(10px);
}

.brand-mark {
    align-items: center;
    background: var(--lb-mist);
    border: 2px solid var(--lb-ocean);
    border-radius: 50%;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    width: 38px;
}

.brand-mark::before {
    background: var(--lb-ocean);
    content: "";
    height: 2px;
    position: absolute;
    width: 24px;
}

.brand-mark::after {
    border: 2px solid var(--lb-turquoise);
    border-left: 0;
    border-top: 0;
    content: "";
    height: 10px;
    margin-top: 7px;
    transform: rotate(35deg);
    width: 20px;
}

.btn-primary {
    background: var(--lb-ocean);
    border-color: var(--lb-ocean);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #0a5876;
    border-color: #0a5876;
}

.btn-outline-primary {
    border-color: var(--lb-ocean);
    color: var(--lb-ocean);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--lb-ocean);
    border-color: var(--lb-ocean);
}

.hero-section {
    background: linear-gradient(180deg, var(--lb-mist) 0%, #fff 100%);
    padding: 6rem 0 4rem;
}

.photo-placeholder {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(circle at 30% 20%, rgba(44, 188, 198, 0.25), transparent 35%),
        linear-gradient(180deg, #d9f2f5, #fff5df);
    border: 1px solid rgba(13, 59, 102, 0.12);
    border-radius: var(--lb-radius);
    min-height: 420px;
    position: relative;
}

.photo-placeholder::after {
    bottom: 24px;
    color: var(--lb-ocean);
    content: "Fotografie profesională";
    font-size: 0.9rem;
    left: 24px;
    position: absolute;
}

.section-band {
    background: var(--lb-mist);
}

.soft-card {
    background: #fff;
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    box-shadow: 0 12px 30px rgba(13, 59, 102, 0.05);
}

.service-card {
    height: 100%;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
    box-shadow: 0 18px 38px rgba(13, 59, 102, 0.08);
    transform: translateY(-2px);
}

.muted {
    color: var(--lb-muted);
}

.status-chip {
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.45rem 0.65rem;
}

.slot-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.slot-radio input {
    position: absolute;
    opacity: 0;
}

.slot-radio span {
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    cursor: pointer;
    display: block;
    padding: 0.8rem;
    text-align: center;
}

.slot-radio input:checked + span {
    background: var(--lb-ocean);
    border-color: var(--lb-ocean);
    color: #fff;
}

.admin-shell {
    background: #f7f9fb;
    min-height: 100vh;
}

.admin-sidebar {
    background: #fff;
    border-right: 1px solid #e5e7eb;
    min-height: 100vh;
    position: sticky;
    top: 0;
}

.admin-sidebar .nav-link {
    border-radius: var(--lb-radius);
    color: #344054;
    font-weight: 600;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--lb-mist);
    color: var(--lb-ocean);
}

.admin-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--lb-radius);
}

.table {
    --bs-table-color: #1f2933;
}

.cookie-banner {
    background: #fff;
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    bottom: 16px;
    box-shadow: 0 18px 45px rgba(13, 59, 102, 0.14);
    left: 16px;
    max-width: 440px;
    position: fixed;
    z-index: 1080;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 4rem;
    }

    .photo-placeholder {
        min-height: 300px;
    }

    .admin-sidebar {
        min-height: auto;
        position: static;
    }
}
