/* ======== GLOBAL STYLES ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* ======== HEADER ======== */
header {
    padding: 60px 20px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    text-align: center;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}

header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideDown 1.5s ease-in-out;
}

header p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    box-shadow: 0px 4px 8px rgba(255, 87, 34, 0.3);
}

.btn:hover {
    background-color: #e64a19;
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(255, 87, 34, 0.5);
}

/* ======== FEATURES SECTION ======== */
.features {
    padding: 60px 20px;
    background-color: #1a1a1a;
    animation: fadeIn 1.5s ease-in-out;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.features p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features ul li::before {
    content: "✔";
    color: #ff9800;
    font-size: 1.4rem;
    margin-right: 10px;
}

/* ======== LUTs SHOWCASE ======== */
.luts-showcase {
    padding: 60px 20px;
    background-color: #121212;
}

.luts-showcase h2 {
    font-size: 2.2rem;
    color: #ff9800;
    margin-bottom: 30px;
}

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

.lut {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    transition: 0.3s ease-in-out;
    animation: fadeIn 1.5s ease-in-out;
}

.lut:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 152, 0, 0.5);
}

.lut img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lut p {
    font-size: 1rem;
    margin: 15px 0;
}

/* ======== VIDEOS SECTION ======== */
.videos {
    padding: 60px 20px;
    background-color: #181818;
}

.videos h2 {
    font-size: 2.2rem;
    color: #ff9800;
    margin-bottom: 30px;
}

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

.video-container iframe {
    border-radius: 10px;
    width: 320px;
    height: 180px;
    transition: 0.3s ease-in-out;
}

.video-container iframe:hover {
    transform: scale(1.05);
}

/* ======== TUTORIAL SECTION ======== */
.tutorial {
    padding: 60px 20px;
    background-color: #222;
}

.tutorial h2 {
    font-size: 2.2rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.tutorial ol {
    list-style-type: decimal;
    text-align: left;
    display: inline-block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.tutorial ol li {
    margin: 15px 0;
}

/* ======== FOOTER ======== */
footer {
    background: #111;
    padding: 30px 20px;
    color: #aaa;
}

footer a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* ======== ANIMATIONS ======== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}