/* Custom CSS for Barry de Bakker */

:root {
    --primary-color: #D4AF37;
    --primary-dark: #b1891c;
    --secondary-color: #111111;
    --text-color: #2d2d2d;
    --muted-color: #6c6c6c;
    --soft-bg: #f4f0e6;
    --soft-bg-alt: #fdf8ee;
    --border-radius: 1.25rem;
    --shadow-soft: 0 20px 55px rgba(0,0,0,0.07);
    --shadow-card: 0 12px 35px rgba(0,0,0,0.08);
    --font-heading: 'Playfair Display', serif;
    --font-base: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7;
    font-size: 1rem;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--secondary-color);
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: rgba(255,255,255,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
}

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

.btn {
    border-radius: 999px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary-color));
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.3);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero {
    background: linear-gradient(180deg, #000000 0%, #111 40%, #1b1b1b 100%);
    color: #fff;
    padding-top: 7rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1514996937319-344454492b37?auto=format&fit=crop&w=1200&q=80');
    opacity: 0.08;
    mix-blend-mode: screen;
}

.hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    color: #fff;
}

.hero .lead {
    color: rgba(255,255,255,0.75);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.hero-note {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    padding: 0.8rem 1.2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

.essentials-card {
    margin-top: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1.3rem;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.essentials-card .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.35rem;
}

.essentials-card .value {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.badge-soft {
    display: inline-flex;
    padding: 0.35rem 1.1rem;
    border-radius: 999px;
    background-color: var(--soft-bg);
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.border-top {
    border-top: 1px solid rgba(0,0,0,0.05) !important;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.icon-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.icon-list span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft-bg);
    color: var(--primary-dark);
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.stat-label {
    color: var(--muted-color);
    margin: 0;
}

.process-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.timeline {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    padding-left: 10px;
}

.timeline-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--soft-bg);
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bg-dune {
    background: var(--soft-bg-alt);
}

.bread-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bread-card__header h3 {
    font-family: var(--font-heading);
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
}

.bread-card__header p {
    margin-bottom: 0.75rem;
    color: var(--muted-color);
}

.bread-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.bread-card__list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.bread-card__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.review-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.review-card p {
    margin-bottom: 0.8rem;
}

.review-author {
    color: var(--muted-color);
    font-weight: 600;
}

.bg-dark-gold {
    background: linear-gradient(90deg, #111, #2b2b2b);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    margin: 0 1rem;
}

.contact-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--muted-color);
    margin-bottom: 0.4rem;
}

.contact-card .value {
    margin: 0;
    font-weight: 600;
}

.contact-form {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-control,
.form-select {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.08);
}

footer {
    background: #050505;
}

footer a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

footer a:hover {
    color: #fff;
}

.skip-to-content {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-content:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 999px;
    z-index: 1000;
}

@media (max-width: 992px) {
    .hero {
        text-align: center;
    }

    .essentials-card {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
