/* General Styles */
body {
    font-family: 'Comic Sans MS', sans-serif;
    background: linear-gradient(135deg, #FFD700, #FF69B4, #40E0D0); /* Retro pastel gradient */
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 3.5rem;
    color: #FF4500; /* Bright retro orange */
    text-shadow: 2px 2px 4px #000000; /* Add shadow to make header pop */
    margin-bottom: 0;
}

header .subheader {
    font-size: 2.5rem; /* Smaller size for "1993 Virginia Flying Disc Champion" */
    color: #FF4500; /* Bright retro orange */
    text-shadow: 1px 1px 3px #000000; /* Smaller shadow */
    margin-top: 5px;
}

header p {
    font-size: 1.5rem;
    color: #FFD700; /* Retro yellow */
    margin-top: 5px;
}

main {
    margin: 20px auto;
    padding: 20px;
    max-width: 960px;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Featured Image */
.featured-image {
    margin: 20px auto;
}

.featured-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #FF4500; /* Bright retro border */
}

section {
    margin: 20px 0; /* Reduced margin between sections */
    padding: 10px;
}

section h2 a {
    text-decoration: none;
    color: #FF4500;
    font-size: 2rem;
}

section h2 a:hover {
    text-decoration: underline;
}

button {
    background-color: #FF4500;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

button:hover {
    background-color: #FFD700;
}

footer {
    margin-top: 20px;
    padding: 20px;
    background-color: #FF4500;
    color: white;
}

/* Navigation Bar */
nav {
    margin-top: 20px;
}

.nav-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #FF4500; /* Retro orange */
    font-size: 1.2rem;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #FFD700; /* Retro yellow on hover */
    color: #333; /* Text color change on hover */
}

/* Gallery styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}