/* Panna Park Dallas - Clean Design System */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: white;
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }

    ::-webkit-scrollbar-thumb {
        background: #F26522;
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #d4551b;
    }
}

html {
    scroll-behavior: smooth;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #F26522;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

input:focus,
textarea:focus,
select:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #F26522;
    box-shadow: 0 0 20px rgba(242, 101, 34, 0.1);
}


@media (max-width: 640px) {
    h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
}

@media print {
    body {
        background: white;
        color: black;
    }

    nav, footer, .no-print {
        display: none;
    }

    a {
        text-decoration: underline;
        color: black;
    }
}
