/*
 * Kingz Reality 69 - Website Styles
 * Modern, dark theme with neon accents
 */

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary: #FF0066;         /* Neon Pink */
    --secondary: #00FFCC;       /* Neon Teal */
    --accent: #FFCC00;          /* Gold Accent */
    --dark: #1A1A1A;            /* Near Black */
    --darker: #121212;          /* Deeper Black */
    --light: #F0F0F0;           /* Off White */
    --gray: #888888;            /* Medium Gray */
    --dark-gray: #333333;       /* Dark Gray */
    
    /* Typography */
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Other Variables */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 6px;
    --glow: 0 0 15px rgba(255, 0, 102, 0.7);
}

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

body {
    font-family: var(--body-font);
    font-weight: 300;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    color: var(--light);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--secondary);
}

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

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--darker);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--dark);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--light);
    padding: 8px 18px;
    border-radius: var(--border-radius);
}

.btn-nav:hover {
    background-color: var(--light);
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    display: inline-block;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.2rem;
    margin-left: 12px;
    margin-bottom: 0;
    color: var(--light);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                radial-gradient(circle at center, var(--dark-gray) 0%, var(--darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(217deg, rgba(255, 0, 102, 0.3), rgba(255, 0, 102, 0) 70%),
        linear-gradient(127deg, rgba(0, 255, 204, 0.3), rgba(0, 255, 204, 0) 70%),
        linear-gradient(336deg, rgba(255, 204, 0, 0.3), rgba(255, 204, 0, 0) 70%);
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 5;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.7);
}

.hero h2::after {
    display: none;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--light);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Experiences Section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.experience-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.experience-placeholder {
    height: 200px;
    background: linear-gradient(45deg, var(--dark-gray), var(--darker));
    position: relative;
}

.experience-info {
    padding: 20px;
}

.experience-info h3 {
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.experience-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--light);
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Technology Section */
.technology {
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.technology-content {
    max-width: 900px;
    margin: 0 auto;
}

.technology-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-feature {
    padding: 20px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.tech-feature:hover {
    background: rgba(255, 0, 102, 0.1);
    transform: translateX(5px);
}

.tech-feature h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Entertainment Section */
.entertainment {
    background-color: var(--dark);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resource-column {
    display: flex;
    flex-direction: column;
}

.resource-column a {
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.resource-column a:hover {
    background: rgba(255, 0, 102, 0.1);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

/* Membership Section */
.membership {
    background: linear-gradient(180deg, var(--dark), var(--darker));
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.plan-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
    transform: scale(1.05);
    z-index: 10;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 700;
}

.plan-header {
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--light);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.plan-features ul li::before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--darker), var(--dark));
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    padding: 30px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--light);
    opacity: 0.9;
}

.testimonial-author .name {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial-author .location {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    background-color: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 0, 102, 0.2);
}

.info-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary);
}

.info-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card strong {
    color: var(--light);
}

/* FAQ Section */
.faq {
    background-color: var(--darker);
}

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

.faq-item {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.9));
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--light);
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.cta h2::after {
    display: none;
}

.cta p {
    color: var(--light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--light);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--light);
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo svg {
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light);
    font-family: var(--heading-font);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
}

.footer-nav-column h3 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav-column ul li a:hover {
    color: var(--primary);
}

.footer-social h3 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.icon {
    font-size: 1.2rem;
    color: var(--light);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.disclaimer {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        margin-bottom: 20px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1002;
        width: 30px;
        height: 21px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        position: absolute;
        height: 3px;
        width: 30px;
        background-color: var(--light);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }
    
    .nav-toggle-label span {
        top: 9px;
    }
    
    .nav-toggle-label span::before {
        content: '';
        top: -9px;
    }
    
    .nav-toggle-label span::after {
        content: '';
        top: 9px;
    }
    
    .nav-toggle:checked + .nav-toggle-label span {
        background-color: transparent;
    }
    
    .nav-toggle:checked + .nav-toggle-label span::before {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle:checked + .nav-toggle-label span::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--darker);
        transition: all 0.4s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }
    
    .nav-toggle:checked ~ nav {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0 30px;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .technology-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p:first-child {
        margin-bottom: 10px;
    }
}
