/*
Theme Name: Plux Agency Theme
Author: OpenAI
Description: Modern digital marketing homepage template for Plux Consult
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background: #111827;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

header h1 {
    margin: 0;
    color: #38bdf8;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: #38bdf8;
    color: #0f172a;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
}

.section {
    padding: 80px 8%;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
}

.card h3 {
    color: #38bdf8;
}

.testimonial {
    background: #111827;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.footer {
    background: #020617;
    padding: 40px 8%;
    text-align: center;
    font-size: 14px;
}

@media(max-width:768px) {
    .hero h2 {
        font-size: 36px;
    }

    nav {
        display: none;
    }
}
