/* Theme */
:root {
    --ink: #0f1c2e;
    --ink-2: #162a44;
    --accent: #d97706;
    --accent-2: #f59e0b;
    --paper: #f8f4ef;
    --muted: #6b7280;
    --card: #ffffff;
    --shadow: 0 20px 50px rgba(15, 28, 46, 0.12);
}

/* Global tweaks */
body {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(1200px 500px at 10% -10%, #fff2d6 0%, transparent 55%),
                radial-gradient(900px 400px at 90% 0%, #e7f1ff 0%, transparent 60%),
                var(--paper);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Fraunces", "Source Sans 3", serif;
    color: var(--ink);
}

.text-muted {
    color: var(--muted) !important;
}

.bg-primary {
    background-color: var(--ink) !important;
}

.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #1c1206;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--accent-2);
    border-color: var(--accent-2);
    color: #1c1206;
}

.btn-outline-primary {
    border-color: var(--ink-2);
    color: var(--ink-2);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--ink-2);
    color: #ffffff;
}

/* Hero */
.hero-section {
    background: radial-gradient(700px 400px at 15% 20%, rgba(245, 158, 11, 0.25), transparent 60%),
                radial-gradient(700px 400px at 90% 10%, rgba(14, 116, 144, 0.25), transparent 60%),
                linear-gradient(135deg, #0f1c2e, #0b2b4a);
    padding: 5.5rem 0;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-lead {
    color: #f7d088 !important;
}

.hero-points {
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .hero-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: #ffe8b3;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-points li::before {
    content: "●";
    color: #f59e0b;
    font-size: 0.6rem;
    line-height: 1;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #0f1c2e, #0b2b4a);
    padding: 4.5rem 0;
}

.cta-lead {
    color: #f7d088 !important;
}

/* Footer */
.footer {
    font-size: 0.9rem;
}

/* Cards */
.card {
    border: none;
    background: var(--card);
    box-shadow: var(--shadow);
    border-radius: 18px;
}

/* Site logo */
.site-logo {
    width: 140px;
    height: 48px;
    object-fit: contain;   /* preserves logo proportions */
    display: block;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-image {
    border-radius: 24px; /* adjust to taste */
}

html {
    scroll-behavior: smooth;
}

#services {
    scroll-margin-top: 110px; /* adjust to navbar height */
}

#contact {
    scroll-margin-top: 110px; /* adjust to navbar height */
}

#tools {
    scroll-margin-top: 140px; /* navbar height + extra spacing */
}

section[id] {
    scroll-margin-top: 110px; /* sticky header offset */
}

/* Experience logos */
.experience-logo {
    height: 48px;          /* STANDARD HEIGHT */
    width: auto;
    max-width: 160px;      /* prevents very wide logos */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

.booking-highlight-image {
    max-width: 260px;     /* keeps it visually small */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.nav-main {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color .2s ease;
}

.nav-main::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #0d6efd; /* Bootstrap primary */
    transition: all .25s ease;
    transform: translateX(-50%);
}

.nav-main:hover::after,
.nav-main.active::after {
    width: 100%;
}

.nav-main.active {
    color: var(--accent-2);
}

.nav-main::after {
    background-color: var(--accent-2);
}

.footer {
    background: var(--ink);
}

.footer h6 {
    color: #ffffff;
}

.footer .footer-lead {
    color: #f7d088;
}

.reveal-up {
    animation: reveal-up 0.8s ease both;
}

.reveal-up.delay-1 { animation-delay: 0.1s; }
.reveal-up.delay-2 { animation-delay: 0.2s; }
.reveal-up.delay-3 { animation-delay: 0.3s; }

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
