html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    scroll-snap-type: y mandatory;
}

.hero, .content {
    scroll-snap-align: start;
}

.navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color: rgba(0, 0, 0, 0); 
    color: white;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.navbar.scrolled {
    background-color: rgba(0,0,0,0.9);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navbar .nav-left {
    margin-left:0;
}

.navbar .nav-right {
    margin-right:0;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ffcc00;
}

.hero-slider {
    position:relative;
    height: 84vh;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    height:100%;
    transition: transform 0.8s ease;
    background-color: rgba(45, 45, 45, 0.998);
}

.slide {
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: top;
    display: flex;
    justify-content: center;
}

.dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.dots .active {
    background: #ffcc00;
}

footer {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin: 0 0 auto 0;
    text-align: center;
    color: #aaa;
}

.socials 
{
    display: flex;
    justify-content: center;
    padding: 2vh 0 0 0;
    margin:0;
    list-style: none;
    gap: 20px;
}

.socials svg
{
    width:32px;
    height:32px;
    fill:white;
}

.infos
{
    height:8vh; 
    background-color:rgba(45, 45, 45, 0.998);
}