﻿* {
    box-sizing: border-box;
}

:root {
    --bg: #0d253f;
    --accent: #1e90ff;
    --muted: #f2f6fb;
    --ink: #0e1a24;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.45;
}

.tartan-header {
    background-image: url("../img/tartan.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 240px; /* a bit taller for breathing room */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    padding: 12px 10px;
}

    .tartan-header h1 {
        margin: 0;
        font-size: 2.5em;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .tartan-header p {
        margin: 5px 0 0;
        font-size: 1.2em;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }

@media (min-width: 800px) {
    .tartan-header {
        height: 280px;
    }
}


.btn {
    background-color: #87CEFA;
    color: #003366;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

    .btn:hover {
        background-color: #5fb8f5;
    }

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

h2 {
    margin: 24px 0 8px;
    padding-left: 10px;
    border-left: 4px solid var(--accent);
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 760px;
}

thead th {
    background: var(--bg);
    color: #fff;
    text-align: left;
    padding: 10px 12px;
    font-weight: 700;
}

tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8eef6;
    vertical-align: top;
}

tbody tr:nth-child(odd) {
    background: #fff;
}

tbody tr:nth-child(even) {
    background: var(--muted);
}

.packages table, .notes ul {
    margin-bottom: 12px;
}

.notes ul {
    padding-left: 18px;
}

.notes li {
    margin: 6px 0;
}

.site-footer {
    border-top: 1px solid #e8eef6;
    color: #4b6075;
    text-align: center;
    padding: 18px;
}

@media print {
    .site-header, .site-footer {
        background: none;
        color: #000;
    }

    h2 {
        border-left-color: #000;
    }

    .table-wrap {
        box-shadow: none;
    }
}
