/*
Theme Name: STUDYKITE
Theme URI: https://studykite.com
Author: STUDYKITE Team
Author URI: https://studykite.com
Description: Modern gaming + learning platform for students with interactive study experiences.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: studykite
Tags: gaming, education, learning, responsive
*/

/* =============================================
   RESET & BASE
============================================= */

*, *::before, *::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    font-family:'Nunito','Segoe UI',Arial,sans-serif;

    background-color:#0B0613;

    color:#D6CCFF;

    line-height:1.75;

    -webkit-font-smoothing:antialiased;

    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    color:#A855F7;
    text-decoration:none;
    transition:0.2s ease;
}

a:hover{
    color:#C084FC;
}

ul,ol{
    list-style:none;
}

/* =============================================
   VARIABLES
============================================= */

:root{

    --red:#6C3BFF;

    --orange:#8B5CF6;

    --gold:#A855F7;

    --light-gold:#C084FC;

    --grad:
    linear-gradient(
        135deg,
        #6C3BFF 0%,
        #8B5CF6 55%,
        #A855F7 100%
    );

    --bg-page:#0B0613;

    --bg-light:#140B22;

    --bg-white:#1A102B;

    --text-dark:#FFFFFF;

    --text-body:#D6CCFF;

    --text-muted:#9F8EDB;

    --border:
        rgba(168,85,247,0.16);

    --shadow:
        0 2px 20px rgba(108,59,255,0.18);

    --radius:12px;

    --radius-sm:8px;
}

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

h1,h2,h3,h4,h5,h6{

    font-family:
        'Rajdhani',
        'Segoe UI',
        Arial,
        sans-serif;

    color:var(--text-dark);

    line-height:1.25;

    font-weight:700;
}

h1{
    font-size:
        clamp(1.8rem,4vw,2.8rem);
}

h2{
    font-size:
        clamp(1.5rem,3vw,2.1rem);
}

h3{
    font-size:1.25rem;
}

h4{
    font-size:1.1rem;
}

p{
    margin-bottom:1rem;
    color:var(--text-body);
}

strong{
    color:#fff;
    font-weight:700;
}

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

.container{
    max-width:1100px;
    margin:0 auto;
    padding:0 24px;
}

.section{
    padding:70px 0;
}

.section-alt{
    background:var(--bg-light);
}

.section-header{
    margin-bottom:40px;
}

.section-header h2{
    margin-bottom:8px;
}

.section-header p{
    color:var(--text-muted);
    max-width:600px;
}

.title-rule{
    width:48px;
    height:3px;

    background:var(--grad);

    border-radius:3px;

    margin-bottom:12px;
}

.two-col{
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:40px;

    align-items:start;
}

.three-col{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:24px;
}

.four-col{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:20px;
}

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

.btn{
    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    font-weight:700;

    font-size:0.95rem;

    cursor:pointer;

    transition:0.2s ease;

    border:none;

    text-align:center;

    white-space:nowrap;
}

.btn-primary{

    background:var(--grad);

    color:#fff;

    box-shadow:
        0 3px 14px rgba(108,59,255,0.30);
}

.btn-primary:hover{

    color:#fff;

    opacity:0.92;

    transform:translateY(-1px);

    box-shadow:
        0 6px 20px rgba(108,59,255,0.38);
}

.btn-outline{

    background:transparent;

    color:#C084FC;

    border:2px solid #8B5CF6;
}

.btn-outline:hover{

    background:#8B5CF6;

    color:#fff;
}

/* =============================================
   HEADER
============================================= */

.site-header{

    background:#0F071A;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:
        0 2px 12px rgba(0,0,0,0.35);
}

.header-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:64px;

    gap:20px;
}

.site-logo{

    display:flex;

    align-items:center;

    gap:10px;
}

.site-logo img{

    height:44px;

    border-radius:10px;
}

.site-logo .logo-text{

    font-family:'Rajdhani',sans-serif;

    font-size:1.55rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    background:var(--grad);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/* =============================================
   NAVIGATION
============================================= */

.main-nav ul{

    display:flex;

    align-items:center;

    gap:6px;
}

.main-nav ul li a{

    color:#BFA6FF;

    font-size:0.9rem;

    font-weight:600;

    padding:7px 13px;

    border-radius:6px;

    display:block;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a{

    background:
        rgba(255,255,255,0.08);

    color:#fff;
}

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

.hero{

    background:
    linear-gradient(
        135deg,
        #0B0613 0%,
        #1A1030 45%,
        #0B0613 100%
    );

    padding:72px 0 64px;

    position:relative;

    overflow:hidden;
}

.hero-inner{

    display:grid;

    grid-template-columns:
        1fr auto;

    align-items:center;

    gap:48px;
}

.hero-tag{

    display:inline-block;

    font-size:0.8rem;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    color:#C084FC;

    background:
        rgba(168,85,247,0.12);

    border:
        1px solid rgba(168,85,247,0.25);

    padding:4px 14px;

    border-radius:20px;

    margin-bottom:16px;
}

.hero h1{

    color:#fff;

    margin-bottom:18px;

    font-size:
        clamp(2rem,4.5vw,3.2rem);

    line-height:1.15;
}

.hero h1 span{

    background:var(--grad);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hero-desc{

    color:#BFA6FF;

    font-size:1.05rem;

    max-width:520px;

    margin-bottom:30px;

    line-height:1.7;
}

/* =============================================
   CARDS
============================================= */

.card,
.contact-card,
.hero-card,
.stat-item{

    background:#140B22;

    border-radius:12px;

    padding:26px 22px;

    border:
        1px solid rgba(168,85,247,0.16);

    box-shadow:
        0 2px 20px rgba(108,59,255,0.18);

    transition:0.2s ease;
}

.card:hover{

    transform:translateY(-3px);

    box-shadow:
        0 8px 30px rgba(108,59,255,0.22);
}

/* =============================================
   PAGE HERO
============================================= */

.page-hero{

    background:
    linear-gradient(
        135deg,
        #0B0613,
        #1A1030
    );

    padding:52px 0 44px;

    text-align:center;
}

.page-hero h1{
    color:#fff;
}

.page-hero p{
    color:#BFA6FF;
}

/* =============================================
   FOOTER
============================================= */

.site-footer{

    background:#09040F;

    color:#9F8EDB;

    padding:56px 0 0;
}

.footer-bottom{

    background:#05010A;

    padding:16px 24px;

    text-align:center;
}

/* =============================================
   MARQUEE
============================================= */

.marquee-strip{

    background:#12091F;

    padding:10px 0;

    overflow:hidden;

    border-top:
        2px solid #8B5CF6;
}

/* =============================================
   FAQ
============================================= */

.faq-item{

    background:#140B22;

    border-radius:8px;

    border:
        1px solid rgba(168,85,247,0.16);

    margin-bottom:10px;

    overflow:hidden;
}

.faq-q{

    padding:16px 20px;

    font-weight:700;

    font-size:0.97rem;

    color:#fff;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.faq-q .faq-arrow{

    width:20px;
    height:20px;

    background:var(--grad);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:0.65rem;
}

/* =============================================
   RESPONSIVE
============================================= */

@media(max-width:900px){

    .two-col{
        grid-template-columns:1fr;
        gap:28px;
    }

    .three-col{
        grid-template-columns:1fr 1fr;
    }

    .four-col{
        grid-template-columns:1fr 1fr;
    }

    .main-nav{
        display:none;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:32px;
    }
}

@media(max-width:600px){

    .three-col,
    .four-col{
        grid-template-columns:1fr;
    }

    .section{
        padding:48px 0;
    }

    .container{
        padding:0 18px;
    }

    h1{
        font-size:2rem;
    }

    .btn{
        width:100%;
    }
}

/* =============================================
   STUDYKITE CUSTOM
============================================= */

.notice-bar{
    font-weight:700;
}

::selection{
    background:#8B5CF6;
    color:#fff;
}