/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Lato', sans-serif;
    color: white;
    overflow: hidden;
}

/* Slideshow Background */
.slideshow-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #333;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Content Overlay */
.content-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(60, 30, 10, 0.5));
    /* Warmer, copper-tinted overlay */
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fadadd;
    /* Pastel Pink */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fdfd96;
    /* Pastel Yellow */
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}