/* ============================================
   VORALYN / CHAOSDUEL — PREMIUM MYTHIC STYLE
   ============================================ */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #0d0d0f;
    color: #e6e6e6;
    line-height: 1.6;
}

/* COLORS */
:root {
    --beam: #7c3aed;          /* Violet sacré */
    --beam-soft: #a78bfa;
    --accent: #06b6d4;        /* Bleu Voralyn */
    --accent-soft: #67e8f9;
    --dark: #0d0d0f;
    --dark-soft: #1a1a1d;
    --light: #f5f5f7;
}

/* HEADER */
.site-header {
    background: rgba(13, 13, 15, 0.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.brand__beam {
    width: 10px;
    height: 10px;
    background: var(--beam);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--beam);
}

.brand__divider {
    opacity: 0.4;
}

/* NAV */
.site-nav {
    display: flex;
    gap: 1.2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.2s;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-soft);
}

/* HERO */
.hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, #141416, #0d0d0f);
}

.hero__content {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--beam-soft);
}

.hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.hero__tagline {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary {
    background: var(--beam);
    color: white;
}

.btn-primary:hover {
    background: var(--beam-soft);
}

.btn-secondary {
    background: var(--accent);
    color: #0d0d0f;
}

.btn-secondary:hover {
    background: var(--accent-soft);
}

/* SECTIONS */
.section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-soft);
}

/* GRID */
.grid {
    display: grid;
    gap: 2rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* CARDS */
.card {
    background: var(--dark-soft);
    padding: 1.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

.card:hover {
    border-color: var(--beam-soft);
    transform: translateY(-3px);
}

/* CONTACT FORM */
.contact-form {
    max-width: 600px;
    margin: auto;
}

.form-row {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1a1a1d;
    color: var(--light);
}

input:focus, textarea:focus {
    outline: 2px solid var(--beam);
}

.form-hint {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.3rem;
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* FOOTER */
.site-footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.5;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
