/*
Theme Name: Minimal Theme
Theme URI: https://your-site.com/minimal-theme
Author: Your Name
Author URI: https://your-site.com
Description: A bare‑bones WordPress theme for learning purposes.
Version: 1.0
License: GPL v2 or later
Text Domain: minimal-theme
*/

 
/* ----- Reset & Base (copied from your HTML) ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #6c5ce7;
    color: #fff;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35);
}
.btn-primary:hover {
    background: #5a4bd1;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.45);
}

.btn-outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #d0d5dd;
}
.btn-outline:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.04);
}

/* ----- HEADER ----- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.logo span {
    color: #6c5ce7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #4a4a5e;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover {
    color: #6c5ce7;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6c5ce7;
    transition: width 0.25s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 10px 28px;
    font-size: 0.9rem;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- HERO SECTION ----- */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #f8f7ff 0%, #edeaff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a4a5e;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: #fff;
    border-radius: 32px;
    padding: 40px 32px;
    box-shadow: 0 40px 80px rgba(108, 92, 231, 0.10);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(108, 92, 231, 0.06);
    transition: transform 0.4s ease;
}
.hero-card:hover {
    transform: translateY(-6px);
}

.hero-card .card-icon {
    font-size: 2.8rem;
    color: #6c5ce7;
    margin-bottom: 12px;
}
.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.hero-card p {
    color: #5a5a72;
    font-size: 0.95rem;
}
.hero-card .feature-list {
    margin-top: 20px;
    list-style: none;
}
.hero-card .feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #2d2d44;
}
.hero-card .feature-list li i {
    color: #6c5ce7;
    font-size: 1rem;
    width: 20px;
}

/* ----- ABOUT US SECTION ----- */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.10);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #5a5a72;
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.about-item {
    background: #f8f9fc;
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid #f0f0f4;
    transition: all 0.3s ease;
}
.about-item:hover {
    background: #fff;
    border-color: #e8e5ff;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.06);
}

.about-item i {
    font-size: 1.8rem;
    color: #6c5ce7;
    margin-bottom: 8px;
}
.about-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.about-item p {
    font-size: 0.9rem;
    color: #6b6b80;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(145deg, #f0edff, #e8e5ff);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.08);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: #6c5ce7;
    margin-bottom: 16px;
}
.about-image-placeholder h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
}
.about-image-placeholder p {
    color: #5a5a72;
}

/* ----- FOOTER ----- */
footer {
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-brand .logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: inline-block;
}
.footer-brand .logo span {
    color: #a78bfa;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #a78bfa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    font-size: 1.2rem;
    transition: color 0.2s;
}
.footer-socials a:hover {
    color: #a78bfa;
}

/* ----- RESPONSIVE (copied from your HTML) ----- */
@media (max-width: 992px) {
    .hero .container,
    .about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p,
    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .nav-links a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .about {
        padding: 80px 0;
    }
    .about-content h2 {
        font-size: 2.2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-card {
        padding: 28px 20px;
    }
    .about-image-placeholder {
        padding: 40px 20px;
    }
}