@import url('https://fonts.googleapis.com/css2?family=Inter&family=Josefin+Sans&family=Roboto&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    color: #2b2929;
    padding-bottom: 50px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* fixed - Navbar */
.nav {
    position: fixed;
    background-color: #2b2929;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
}
.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.5s ease-in-out;
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    transition: all 0.5s ease-in-out;
}

.nav.active {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav.active a {
    color: #2b2929;
}

.nav.active .container {
    padding: 10px 0;
}

.nav a.current,
.nav a:hover {
    color: #cd685d;
    font-weight: bold;
}
/* Header Image */
.header {
    background-image: url('https://images.pexels.com/photos/389819/pexels-photo-389819.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    z-index: -2;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0.6, 0.6);
    z-index: -1;
}

.header h1 {
    font-size: 45px;
    margin: -20px 0 20px;
}

.header p {
    font-size: 20px;
    letter-spacing: 1px;
}

/* Content Section */
.content h2,
.content h3 {
    font-size: 150%;
    margin: 20px 0;
}
.content p {
    color: #545050;
    line-height: 30px;
    letter-spacing: 1px;
}
