@import "global.css";

body {
    background-color: #000000;
    color: white;
}

.hero-video {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    padding-top: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content b {
    color: white;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.info-section p {
    color: #86868b;
    padding-top: 20px;
}

.info-section strong {
    color: white;
}

section {
    padding-top: 80px;
    text-align: center;
}

.teaser-card {
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.teaser-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.teaser-card:hover img {
    transform: scale(1.08);
}

.timelapse-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    text-align: center;
}

.timelapse-video {
    width: auto;
    max-width: 90vw;
    height: 70vh;
    border-radius: 30px;
    margin-top: 20px;
}

