
body {
    font-family: sans-serif;
    margin: 0;
    background: #fdfdfb;
    color: #222;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-text p {
    font-size: 1.25rem;
}

.collections {
    padding: 2rem;
    text-align: center;
}

.collection {
    margin: 2rem auto;
    max-width: 600px;
}

.collection img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.collection h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.collection p {
    font-size: 1rem;
    color: #555;
}
