/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #f2f2f2;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 500;
    color: #f2f2f2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

p {
    font-weight: 300;
    color: #c4c4c4;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4rem;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: #f2f2f2;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6f6f;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4d4d;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 4rem;
    background: linear-gradient(145deg, #000, #1a1a1a);
    color: #fff;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    text-transform: none;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.4rem;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

/* Section Styling */
section {
    padding: 100px 4rem;
    text-align: center;
    background-color: #141414;
    color: #f2f2f2;
    margin-bottom: 80px;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Portfolio Section */
.video-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.video {
    width: 31%;
    background-color: #1a1a1a;
    margin-bottom: 50px;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

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

.video h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #fff;
}

/* Services Section */
.services ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.services li {
    font-size: 2rem;
    margin: 15px 0;
    color: #ff4d4d;
    font-weight: 400;
    transition: color 0.3s ease;
}

.services li:hover {
    color: #ff8080;
}

/* Contact Section */
form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
}

form button {
    width: 100%;
    padding: 15px;
    background-color: #ff4d4d;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #ff6f6f;
    transform: translateY(-3px);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
}

footer p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 20px;
    }

    .video {
        width: 45%;
    }

    section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .video {
        width: 100%;
    }
}
