:root {
    --primary: #6C63FF;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #22d3ee;
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 90px; /* Space for fixed header */
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER (STICKY)
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   LOGO
========================= */

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--dark);
}

/* =========================
   NAVIGATION
========================= */

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

/* CTA Button */

.nav-btn {
    background: var(--primary);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: var(--dark);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: var(--dark);
    color: #ffffff;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   GRID
========================= */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--dark);
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    body {
        padding-top: 120px; /* Extra space for stacked header */
    }
}

/* File Rotation index */
/* =========================
   HERO SLIDER
========================= */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content above slides */

.hero-content {
    position: relative;
    z-index: 2;
}


/* SOCIAL MEDIA */
/* ===== Footer Social Icons ===== */

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Glow Effect */
.social-icon:hover {
    transform: translateY(-6px);
}

/* Platform Colors */
.social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.social-icon.twitter:hover {
    background: #000000;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
    box-shadow: 0 10px 25px rgba(221, 42, 123, 0.4);
}

.social-icon.linkedin:hover {
    background: #0077b5;
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.5);
}

.social-icon.discord:hover {
    background: #5865f2;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5);
}
