body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #0e0e0e;
    color: #fff;
}

header {
    padding: 20px;
    text-align: center;
    background: #1a1a1a;
}

header h1 {
    margin: 0;
    font-size: 32px;
}

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 30px;
    background: #ff6f61;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e05b50;
}

.portfolio {
    padding: 60px 20px;
    background: #1a1a1a;
    text-align: center;
}

.portfolio h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    width: 300px;
    background: #2a2a2a;
    padding: 10px;
    border-radius: 10px;
}

.video-item video {
    width: 100%;
    border-radius: 10px;
}

.contact {
    padding: 50px 20px;
    text-align: center;
    background: #111;
}

.contact h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact form {
    max-width: 400px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background: #ff6f61;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    padding: 20px;
    text-align: center;
    background: #1a1a1a;
    font-size: 14px;
    color: #aaa;
}
