@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap');

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

body,
html {
    font-family: 'Crimson Pro', serif;
    background-color: #f7e7ce;
    background-image: url("../images/cassical-music-background-edit.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    color: #2e2e2e;
    min-height: 100vh;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Navbar styling */
.navbar {
    background-color: #004d40;
    color: white;
    width: 100%;
    height: 90px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
}

.logo-img {
    width: 130px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-right: 30px;
    gap: 30px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #f08080;
}

/* Burger menu styling */

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}


/* Footer styling */
.footer {
    background-color: #004d40;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-link {
    color: #f7e7ce;
    font-size: 30px;
    margin: 0 30px;
    text-decoration: none;
}

.footer-link:hover {
    color: #f08080;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #004d40;
        position: absolute;
        top: 90px;
        text-align: center;
        left: 0;
        right: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }
}