@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
    --ink: #182033;
    --muted: #647084;
    --line: #dde4ee;
    --paper: #fbfcfe;
    --panel: #ffffff;
    --blue: #315ce8;
    --green: #0f8f72;
    --rose: #d14f64;
    --amber: #b7791f;
    --slate: #172033;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: #f3f6fa;
    min-height: 100vh;
}

a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 90, 138, 0.25);
    transition: color .15s, border-color .15s;
}

a:hover {
    color: #2447ba;
    border-bottom-color: #2447ba;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(49, 92, 232, 0.45);
    outline-offset: 3px;
    border-radius: 8px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--slate);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.container {
    width: min(860px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 252, 254, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.top-nav-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-nav a {
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 0;
}

.top-nav .links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate) !important;
    background: var(--panel);
    border: 1px solid #dbe4f0;
    border-radius: 9px;
    padding: 9px 11px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.home-link:hover {
    color: var(--blue) !important;
    border-color: #b8c7ee;
    background: #f8fbff;
}

/* HEADER */
.header {
    text-align: center;
    margin: 0 0 28px;
    padding: 36px 28px 28px;
    background: var(--slate);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 85% 80%, rgba(49,92,232,0.18) 0%, transparent 55%);
    pointer-events: none;
}

.header h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.06;
    letter-spacing: 0;
}

.header p {
    margin: 0 auto 20px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
}

.nav-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--blue);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: background .2s, transform .2s;
}

.button:hover {
    text-decoration: none;
    background: #2447ba;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    box-shadow: 0 10px 24px rgba(49, 92, 232, 0.22);
}

@media (hover: hover) and (pointer: fine) {
    .button:hover { transform: translateY(-1px); }
}

/* SECTION DIVIDER */
.section-divider {
    margin: 30px 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ACTIVITY */
.activity {
    margin: 12px 0;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    border-left: 4px solid var(--blue);
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.activity-time {
    margin-bottom: 4px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.activity-title {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 700;
}

.activity-location {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.activity-notes {
    color: #475569;
    background: #f8fafc;
    border-left: 3px solid #b8c7ee;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.55;
}

/* LOJİSTİK — park, araç teslim, eşya bırakma */
.logistics-section {
    margin: 10px 0;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8fbff;
    border: 1.5px dashed #b8c7ee;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 8px rgba(49, 92, 232, 0.08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.logistics-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.logistics-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(49, 92, 232, 0.10);
    padding: 3px 9px;
    border-radius: 999px;
}

.logistics-time {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    margin-left: auto;
}

.logistics-section h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}

.logistics-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logistics-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 9px;
    font-size: 0.88rem;
    color: #475569;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.logistics-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.logistics-item a {
    color: var(--blue);
    border-bottom-color: rgba(49, 92, 232, 0.25);
    font-weight: 600;
}

.logistics-item a:hover { color: #2447ba; }

.logistics-note {
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(49, 92, 232, 0.08);
    border-radius: 8px;
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
}

/* KONAKLAMA — otel */
.hotel-section {
    margin: 12px 0;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #172033 0%, #253047 100%);
    border-left: 4px solid var(--blue);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.18);
}

.hotel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.hotel-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c7d2fe;
    background: rgba(49, 92, 232, 0.22);
    padding: 3px 9px;
    border-radius: 999px;
}

.hotel-section h2 {
    margin: 0 0 3px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
}

.hotel-address {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    margin-bottom: 10px;
}

.hotel-details {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    color: #dbeafe;
    font-size: 0.8rem;
    font-weight: 500;
}

/* YİYECEK */
.food-section {
    margin: 14px 0;
    padding: 18px;
    border-radius: 14px;
    background: #fffbf5;
    border-left: 4px solid var(--amber);
    box-shadow: 0 3px 12px rgba(183, 121, 31, 0.09);
}

.section-title {
    margin: 0 0 14px;
    color: var(--ink);
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
}

.food-option,
.info-item {
    margin: 10px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.item-name {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
}

.item-info {
    padding: 7px 10px;
    border-radius: 7px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.87rem;
    line-height: 1.5;
}

/* BİLGİ */
.info-section {
    margin: 14px 0;
    padding: 18px;
    border-radius: 14px;
    background: #f5f8ff;
    border-left: 4px solid var(--blue);
    box-shadow: 0 3px 12px rgba(49, 92, 232, 0.07);
}

.shopping-section {
    margin: 14px 0;
    padding: 18px;
    border-radius: 14px;
    background: #f7fbf8;
    border-left: 4px solid var(--green);
    box-shadow: 0 3px 12px rgba(15, 143, 114, 0.08);
}

.shopping-section .section-title {
    color: var(--green);
}

.shopping-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shopping-item {
    position: relative;
    padding: 12px 14px;
    padding-left: 40px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.shopping-item::before {
    content: "✓";
    position: absolute;
    top: 13px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(15, 143, 114, 0.12);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
}

.shopping-item h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.shopping-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.shopping-pill {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(15, 143, 114, 0.10);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
}

.shopping-priority-high {
    background: rgba(183, 121, 31, 0.12);
    color: #8a5a12;
}

.shopping-item p {
    margin: 0;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.5;
}

.day-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0 0;
}

.day-nav-link {
    display: flex;
    min-height: 58px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #ffffff;
    border: 1px solid #dbe4f0;
    border-bottom: 1px solid #dbe4f0;
    color: var(--ink);
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}

.day-nav-link span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.day-nav-link strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.day-nav-link.is-muted {
    opacity: 0.58;
    pointer-events: none;
}

/* ZAMAN ÇIZELGE */
.schedule {
    margin: 14px 0;
    padding: 18px;
    border-radius: 14px;
    background: #f0fdf8;
    border-left: 4px solid var(--green);
    box-shadow: 0 3px 12px rgba(15, 143, 114, 0.07);
}

.schedule .section-title { color: var(--green); }

.schedule-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 10px 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

/* VURGU NOTU */
.highlight-note {
    margin: 14px 0;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--amber);
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    color: #7c2d12;
    text-align: center;
    font-size: 0.93rem;
    line-height: 1.5;
    box-shadow: 0 3px 12px rgba(183, 121, 31, 0.1);
}

/* ROTA GRİD — ana sayfa */
.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.day-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    cursor: pointer;
    position: relative;
    padding: 20px 52px 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    border-left: 5px solid var(--blue);
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.09);
    transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}

.day-card:hover {
    text-decoration: none;
    border-bottom: none;
    color: inherit;
}

.day-kicker {
    margin-bottom: 3px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.day-title {
    margin: 0 0 7px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
}

.day-route {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.85rem;
}

.day-note {
    color: #4b5563;
    background: #f8fafc;
    border-left: 3px solid #b8c7ee;
    border-radius: 7px;
    padding: 9px 11px;
    font-size: 0.84rem;
    line-height: 1.5;
}

.card-arrow {
    position: absolute;
    top: 18px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--blue);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
    transition: background .2s, color .2s;
}

.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 38px;
    margin-top: auto;
    padding: 8px 13px;
    border-radius: 10px;
    background: #eef3ff;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    transition: background .2s, color .2s;
}

.card-action span { font-size: 1rem; }

@media (hover: hover) and (pointer: fine) {
    .activity:hover,
    .logistics-section:hover,
    .food-option:hover,
    .info-item:hover,
    .shopping-item:hover,
    .schedule-row:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    }

    .day-nav-link:hover {
        transform: translateY(-2px);
        border-color: #b8c7ee;
        color: var(--blue);
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.13);
    }

    .day-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
        border-left-color: #2447ba;
    }

    .day-card:hover .card-action,
    .day-card:hover .card-arrow {
        background: var(--blue);
        color: #ffffff;
    }
}

.day-card:active {
    transform: scale(0.99);
    border-left-color: #2447ba;
}

/* RESPONSIVE */
@media (max-width: 720px) {
    .container {
        width: calc(100% - 20px);
        padding-top: 14px;
    }

    .top-nav-inner {
        width: calc(100% - 20px);
        min-height: 62px;
        padding: 0 4px;
    }

    .top-nav .links { display: none; }

    .home-link {
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
    }

    .header { padding: 26px 18px 22px; }

    .route-grid,
    .schedule-row,
    .shopping-list,
    .day-nav {
        grid-template-columns: 1fr;
    }

    .nav-actions { align-items: stretch; }

    .button,
    .card-action { width: 100%; }

    .day-card { padding-right: 18px; }

    .card-arrow { top: 16px; right: 14px; }

    .day-kicker,
    .day-title { padding-right: 36px; }

    .hotel-details { flex-direction: column; }
}
