/* General Styling */
* {
    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;
}

/* Header Section */
header {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    font-weight: bold;
}

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;
}

.btn:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.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;
    transition: 0.3s ease-in-out;
    text-align: center;
}

.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;
    opacity: 0.8;
}

/* Video 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;
}