<?php header("Content-Type: text/css"); ?>

/* =====================================================
   BASE RESET (NO CONFLICTS ANYMORE)
===================================================== */

body {
    background: #f4f5f7;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1a1a1a;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =====================================================
   TYPOGRAPHY SAFETY
===================================================== */

p, span, li {
    color: #2b2b2b;
}

h1, h2, h3, h4 {
    color: #111;
    font-weight: 700;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.hero h1 {
    font-size: 56px;
    color: #111;
}

.hero-text {
    font-size: 24px;
    color: #333;
    max-width: 800px;
    margin: 20px auto;
}

/* =====================================================
   WELCOME BOX (YOUR BRAND BLOCK)
===================================================== */

.welcome-box {
    background: crimson;
    border: 3px solid yellow;
    border-radius: 14px;
    padding: 35px;
    margin: 40px auto;

    box-shadow:
        0 0 15px rgba(255,255,0,0.5),
        0 0 30px rgba(220,20,60,0.7);

    text-align: center;
}

.welcome-box h1 {
    color: #fff;
    font-size: 42px;
    font-weight: bold;

    text-shadow:
        2px 2px 5px #000,
        0 0 10px yellow;
}

.welcome-box p {
    color: #ffe97a;
    font-size: 22px;
    font-weight: 600;
}

/* =====================================================
   FEATURES GRID
===================================================== */

.features {
    padding: 60px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: #b8860b;
}

/* =====================================================
   FORMS (CONTACT PAGE FIX)
===================================================== */

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

label {
    font-weight: 600;
    color: #222;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffea00;
    color: #111;
    border-color: #fff;
    box-shadow: 0 0 15px yellow, 0 0 30px gold;
    transform: scale(1.05);
}

.btn-secondary:hover {
    background: crimson;
    color: #fff;
    border-color: yellow;
    box-shadow: 0 0 15px crimson, 0 0 25px red;
    transform: scale(1.05);
}

/* =====================================================
   CTA / SECTIONS
===================================================== */

.creator-section,
.cta {
    padding: 70px 20px;
    text-align: center;
}

/* =====================================================
   STUDIO OVERRIDE (HOME / NEWSPAPER / GSTATION9)
===================================================== */

body.studio-theme {
    background: #f0f2f5;
}

body.studio-theme .feature-card,
body.studio-theme .card {
    background: #fff;
    border: 1px solid #e6e6e6;
}

body.studio-theme h1,
body.studio-theme h2,
body.studio-theme h3,
body.studio-theme p {
    color: #111;
}