/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #feda6a;
    --silver: #d4d4dc;
    --grey: #393f4d;
    --slate: #1d1e22;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--white);
}

/* Header */
header {
    background-color: var(--slate);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow);
    text-decoration: none;
}

/*

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--yellow);
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@supports (animation-timeline: scroll()) {
    .logo {
        opacity: 0;
        animation: fade-in-logo linear;
        animation-timeline: scroll();
        animation-range: 0px 100px;
    }

    @keyframes fade-in-logo {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}
*/


nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: var(--yellow);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 200px);
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--grey) 0%, var(--slate) 100%);
    color: var(--white);
    margin: -3rem -2rem 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--silver);
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--slate);
}

h1 {
	font-size: 4rem;
	margin-top: 2rem;
}

h2 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--yellow);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--yellow);
    color: var(--slate);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid var(--yellow);
}

.btn:hover {
    background-color: transparent;
    color: var(--yellow);
}

.btn-secondary {
    background-color: var(--grey);
    color: var(--white);
    border-color: var(--grey);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--grey);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--silver);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    color: var(--grey);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--slate);
    color: var(--silver);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--grey);
    color: var(--silver);
}

ul.list-hours {
	list-style: disc;
	padding-inline-start: 1.5em;
}

/* Responsive */
/* Add this to your existing @media query at the bottom of style.css */

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}
