/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

/* Header and navigation */
header {
    background-image: url('images/header/pedalHeader2.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    min-height: 150px;
    max-height: 300px;
    height: 25vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 50, 20, 0.5);
}

header h1 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: #ffa500;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0 5px #ff6600,
        0 0 15px #ff6600,
        0 0 30px #ff4500;
}

header h1.neon-off {
    color: #3d2815;
    text-shadow: 
        -1px -1px 0 #b8860b,
        1px -1px 0 #b8860b,
        -1px 1px 0 #b8860b,
        1px 1px 0 #b8860b;
}

nav {
    background: #3d2815;
    padding: 1rem;
    text-align: center;
    position: relative;
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3d2815, #ffa500, #3d2815);
}

nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    font-family: 'Pacifico', cursive;
}

nav a:hover {
    color: #ffa500;
    text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600;
}

/* main image */
.hero-photo {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #222;
    position: relative;
}

.hero-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 50, 20, 0.3);
    pointer-events: none;
}

.hero-photo img {
    max-width: 900px;
    width: auto;
    height: auto;
    max-height: 500px;
    display: block;
}

/* Sections */
section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: 'Special Elite', monospace;
}

/* Photo grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Video container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding-bottom: 56.25%;
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}