/*body*/
html {
  scroll-behavior: smooth;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), url('../assets/budapest_citysight.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
}
/*hero*/

.hero {
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #000;
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('../assets/budapest_parliment.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
 
.hero__inner {
    text-align: center;
}
 
.hero__title {
    font-size: 3rem;
}
 
.hero__buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
 
.btn {
    display: inline-block;
    border: 1px solid #000;
    padding: 8px 16px;
    text-decoration: none;
    color: inherit;
}

/*nav bar*/

:root {
    --color-light-blue: #4fc3f7;
    --color-blue: #1e90ff;
    --color-nav-text: #d8d8d8;
}
 
.site-header {
    position: sticky;
    top: 0;
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}
 
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 32px;
}
 
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f5f5f5;
}
 
.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
}
 
.nav__link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--color-nav-text);
    transition: color 150ms ease;
}
 
.nav__link:hover {
    color: var(--color-light-blue);
}

/*hamburger menu*/
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
 
.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--color-nav-text);
}
 
@media (max-width: 768px) {
    .nav__list {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0d0d0d;
        padding: 20px 0;
    }
 
    .nav--open .nav__list {
        display: flex;
    }
 
    .nav-toggle {
        display: flex;
    }
}

/*section*/

.section {
    min-height: 100vh;
    box-sizing: border-box;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    display: flex;
    align-items: center;
}

#about {
    background-color: #1a1a1a;
}

/*footer*/

.site-footer {
    padding: 28px 20px;
    text-align: center;
    background-color: #0d0d0d;
}