/*
Theme Name: Jamie Folsom Author Theme
Author: Jamie Folsom
Description: A custom full-screen hero WordPress theme for authors
Version: 1.0
*/

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
.hero {
    background: url('assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}
.scroll-down {
    position: absolute;
    bottom: 20px;
    font-size: 2rem;
    text-decoration: none;
    color: white;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
nav {
    position: absolute;
    top: 20px;
    right: 40px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.site-title {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: bold;
}
