* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Brush Script MT', cursive; /* Added cursive fallback */
    line-height: 1.6;
    color: #333;
    /* This sets the main background for the whole page */
    background-color: khaki; 
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: orange;
}

ul {
    list-style: none;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem; /* Made slightly bigger for the fun font */
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* --- Navigation --- */
.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    padding: 20px 0;
}

/* --- Hero Section --- */
.hero {
    height: 50vh; /* Reduced height slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 7.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
    color: orange;
    text-shadow: 2px 2px 0px #fff; /* Added a tiny shadow to pop against khaki */
}

.hero p {
    font-size: 2.2rem;
    color: green;
}

/* --- Archives Button Styling --- */
.btn-archives {
    display: inline-block;
    background-color: orange;
    color: white; 
    padding: 10px 40px;
    font-size: 2rem; 
    text-decoration: none;
    border-radius: 50px; 
    margin-top: 20px;
    border: 3px solid orange;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

.btn-archives:hover {
    background-color: transparent;
    color: orange;
    transform: scale(1.05); 
    cursor: pointer;
}


/* --- Gallery Button Styling (Green) --- */
.btn-gallery {
    display: inline-block;
    background-color: green; /* Different color than Archives */
    color: white; 
    padding: 15px 50px; /* Slightly larger padding */
    font-size: 2.2rem; 
    text-decoration: none;
    border-radius: 15px; /* Less rounded than the pill shape */
    margin-top: 20px;
    border: 3px solid green;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.2); /* Stronger shadow */
}

.btn-gallery:hover {
    background-color: white;
    color: green;
    transform: translateY(-5px); /* Moves up slightly on hover */
    box-shadow: 4px 9px 0px rgba(0,0,0,0.1);
    cursor: pointer;
}