/* styles.css */

@font-face {
    font-family: 'Rastanty Cortez';
    src: url('fonts/RastantyCortez.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    font-size: 3.75em;
    font-weight: bold;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .nav-links a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: #1db954;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
    background: url('band-image.jpg') no-repeat center center fixed;
    background-size: 1000px 900px;
    color: black;
}

.hero h1, .hero p {
    color: black;
}

.betty-calling {
    font-family: 'Rastanty Cortez', sans-serif;
    font-size: 2.5em;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
    position: fixed;
    width: 100%;
    bottom: 0;
}
