@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');
/* CSS Document */

/*California Classic*/

/*Header from Gemini/
/* Modern Header Layout */
.modern-header {
    background-color: #802329; 
    display: flex;
    align-items: center; 
    justify-content: center; /* Keeps logo and text grouped in the center */
    padding: 20px;
    height: 225px; 
    box-sizing: border-box;
    width: 800px; /* Matches your container width */
}

.header-logo {
    height: 180px; 
    margin-right: 40px; /* Creates consistent space between horse and text */
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.4));
}

.header-text {
    text-align: left; /* Left-aligning the text block looks cleaner next to a logo */
}

.main-title {
    font-size: 44px;
    margin: 0;
    font-family: 'Lora', serif;
    color: #f2d272 !important; /* Forces the Gold */
    line-height: 1;
    text-transform: uppercase;
}

/* Secondary text: making it Tan instead of Black/Brown for readability */
.assoc-title, .event-date, .event-loc, .assoc-list {
    color: #e2c08d; 
    margin: 4px 0;
    font-family: Lato, sans-serif;
}

.event-date {
    font-size: 24px;
    font-weight: bold;
}

