/* ================================================
   MINDSPACE CREATIVE - Main Stylesheet
   Pastel, Girly, Modern, Elegant Theme
   ================================================ */

:root {
    /* Pastel Color Palette */
    --soft-pink: #FFB6C1;
    --pink-light: #FFC8D6;
    --pink-dark: #E8909C;
    --mint: #98D8C8;
    --mint-light: #B8E8DC;
    --mint-dark: #7BC4B4;
    --lavender: #C9B1FF;
    --lavender-light: #DED0FF;
    --lavender-dark: #A78BDF;
    --peach: #FFDAB9;
    --peach-light: #FFE8D4;
    --cream: #FFF5EE;
    --soft-yellow: #FFF9C4;
    --soft-blue: #B4E4FF;
    
    /* Text Colors */
    --text-dark: #4A4A4A;
    --text-medium: #6B6B6B;
    --text-light: #8B8B8B;
    --text-white: #FFFFFF;
    
    /* Background */
    --bg-primary: #FFFAF5;
    --bg-secondary: #FFF5F8;
    --bg-card: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 182, 193, 0.15);
    --shadow-md: 0 4px 16px rgba(255, 182, 193, 0.2);
    --shadow-lg: 0 8px 32px rgba(255, 182, 193, 0.25);
    --shadow-hover: 0 12px 40px rgba(201, 177, 255, 0.3);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ================================================
   BASE STYLES
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--pink-dark), var(--lavender-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar-menu a {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--text-dark);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--pink-light);
}

.btn-secondary:hover {
    background: var(--pink-light);
    border-color: var(--soft-pink);
}

.btn-mint {
    background: linear-gradient(135deg, var(--mint), var(--mint-dark));
    color: white;
}

.btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(152, 216, 200, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--soft-pink);
    color: var(--pink-dark);
}

.btn-outline:hover {
    background: var(--soft-pink);
    color: white;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ================================================
   HERO SECTION (P-01)
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--cream) 50%, var(--lavender-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--soft-pink) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 .gradient-text {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
}

.stat-item h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.workshop-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.workshop-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.workshop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.workshop-card:hover .workshop-card-image img {
    transform: scale(1.05);
}

.workshop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.workshop-badge.online {
    background: linear-gradient(135deg, var(--mint), var(--soft-blue));
}

.workshop-badge.hybrid {
    background: linear-gradient(135deg, var(--peach), var(--soft-yellow));
    color: var(--text-dark);
}

.workshop-card-content {
    padding: 25px;
}

.workshop-category {
    display: inline-block;
    color: var(--lavender-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.workshop-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.workshop-card-content h3 a:hover {
    color: var(--pink-dark);
}

.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.workshop-meta i {
    color: var(--soft-pink);
}

.workshop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
}

.workshop-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-dark);
}

.workshop-price .original {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: 400;
}

.workshop-slots {
    font-size: 0.85rem;
    color: var(--text-light);
}

.workshop-slots.low {
    color: var(--pink-dark);
    font-weight: 600;
}

/* ================================================
   CATEGORIES SECTION
   ================================================ */

.categories-section {
    padding: var(--section-padding) 0;
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    background: white;
    border-color: var(--soft-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.category-card h4 {
    margin-bottom: 5px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================================
   FEATURED WORKSHOPS
   ================================================ */

.featured-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* ================================================
   BENEFITS SECTION
   ================================================ */

.benefits-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--mint), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, var(--peach), var(--soft-yellow));
}

.benefit-card h4 {
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--lavender-light) 0%, var(--pink-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-rating {
    color: var(--soft-yellow);
    font-size: 0.9rem;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 50%, var(--mint) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--pink-dark);
}

.cta-section .btn-primary:hover {
    background: var(--cream);
}

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

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--soft-pink);
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--soft-pink);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ================================================
   FORMS
   ================================================ */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--soft-pink);
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.2);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* ================================================
   ALERTS
   ================================================ */

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: var(--mint-light);
    color: var(--mint-dark);
    border: 1px solid var(--mint);
}

.alert-error {
    background: #ffe4e4;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-warning {
    background: var(--soft-yellow);
    color: #9a6700;
    border: 1px solid #ffd93d;
}

.alert-info {
    background: var(--soft-blue);
    color: #2b6cb0;
    border: 1px solid #90cdf4;
}

/* ================================================
   PAGINATION
   ================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #eee;
}

.pagination a:hover {
    background: var(--pink-light);
    border-color: var(--soft-pink);
    color: var(--text-dark);
}

.pagination .active {
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    color: white;
    border-color: transparent;
}

/* ================================================
   BREADCRUMB
   ================================================ */

.breadcrumb {
    padding: 100px 0 20px;
    background: var(--bg-secondary);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list a {
    color: var(--text-light);
}

.breadcrumb-list a:hover {
    color: var(--pink-dark);
}

.breadcrumb-list .separator {
    color: var(--text-light);
}

.breadcrumb-list .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ================================================
   RESPONSIVE DESIGN (TECH-01)
   ================================================ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }

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

.w-100 { width: 100%; }
.h-100 { height: 100%; }
