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

body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #1a1a1a;
    color: #e6e6e6;
    line-height: 1.6;
}

/* HEADER / NAV */
header {
    background-color: #0f0f0f;
    border-bottom: 3px solid #b8860b;
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffcc66;
}

/* HERO BANNER */
.hero {
    width: 100%;
    height: 600px;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #b8860b;
}

/* PAGE CONTENT */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2 {
    color: #ffcc66;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.directions-btn {
    display: inline-block;
    background: #4a148c;
    color: white;
    padding: 10px 18px;
    margin-top: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.directions-btn:hover {
    background: #6a1b9a;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #ddd;
    background: #222;
    line-height: 1.4;
}
