body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: black; /* all text black */
    overflow-y: scroll;
}

/* Backgrounds */
body.home {
    background: url('./background_light.jpg') center/cover no-repeat fixed; 
	background-position: center 100px; /* shift down */
	background-attachment: scroll;
}
body.other {
    background: url('./background_dark.jpg') center/cover no-repeat fixed;
}

/* Header - sticky */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    font-size: 20px;
    box-sizing: border-box;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
}

/* Layout: site title left, nav right */
header .site-title {
    margin-right: auto;
}

header nav {
    margin-left: auto;
}

/* Site title */
.site-title a {
    font-size: 32px; /* larger */
    letter-spacing: 2px;
    font-family: 'Abril Fatface', serif;
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease; /* smooth hover effect */
}

    .site-title a:hover {
        color: #6666; /* subtle darkening */
        text-shadow: 0px 0px 4px rgba(0,0,0,0.1); /* soft glow */
        transform: scale(1.10); /* slight zoom */
    }

/* Navigation */
nav a {
    margin-left: 20px;
    color: black;           /* black text */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease; /* smooth hover effect */
}

/* Hover effect */
nav a:hover {
    color: #6666;            /* subtle darkening */
    text-shadow: 0px 0px 4px rgba(0,0,0,0.1); /* soft glow */
    transform: scale(1.10); /* slight zoom */
}

/* Main content */
main {
    text-align: center;
    margin-top: 10px;
}

/* Headings above centered media: make h2 align with the left edge of centered videos */
body.other main h2,
body.home main h2 {
    color: white;
    font-family: 'Crimson Text', 'Times New Roman', Times, serif;
    width: 80%;
    max-width: 900px;
    margin: 16px auto 8px; /* place just above the video and centered block */
    text-align: left; /* left-justify within the video-width block */
}

/* Page title */
.home h1 {
    margin-bottom: 40px;
    font-family: 'Abril Fatface', serif;
    font-size: 42px; /* larger */
    font-weight: bold;
    color: black;
}

.other h1 {
    margin-bottom: 40px;
    font-family: 'Abril Fatface', serif;
    font-size: 42px; /* larger */
    font-weight: bold;
    color: white;
}

div.home_reel_alt
{
	color: #ff0000;
	font-size: 24px;
    margin-top: 30px;
    font-weight: bold;
}
/* Video */
video {
    width: 80%;
    max-width: 900px;
    border: 4px solid black; /* matches text color */
    margin-bottom: 100px; 
}
footer {
    text-align: left;
    padding: 40px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    opacity: 1;
    mix-blend-mode: difference;
}
