/* General Styles */
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #000;
    color: #e4b4b4;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the page stretches to the full height of the viewport */
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
    background: url('demon-slayer-legends-background.webp') no-repeat center center / cover;
    flex: 1; /* Fills the available space while pushing the footer to the bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 4em;
    font-weight: bold;
    letter-spacing: 3px;
    color: #ff3b3b;
    text-shadow: 0 0 20px #000, 0 0 40px #7e0c0c;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.8em;
    font-weight: normal;
    color: #ffcccb;
    text-shadow: 0 0 15px #7e0c0c;
    margin-bottom: 50px;
}

.hero .cta {
    margin-top: 20px;
}

.hero .cta a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcc00; /* Gold color for the button */
    color: #000; /* Black text for contrast */
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid #d4a017; /* Slightly darker border for the button */
    text-decoration: none; /* Remove underline for button links */
}

.hero .cta a:hover {
    background-color: #d4a017; /* Slightly darker gold on hover */
    color: #fff; /* White text on hover */
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    color: #e4b4b4;
    padding: 10px 0;
    font-size: 0.9em;
}
footer a {
    color: #e4b4b4; /* Matches the whitish-red text color */
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}