/* ===================================
   PRO ACCESS - MINIMALIST STYLE
   Notion-inspired clean design
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e1e4e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #333;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: #f6f8fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #e1e4e8;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    border-color: #333;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 48px;
    text-align: center;
}

/* Workshop Overview */
.workshop-overview {
    background: #f6f8fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.overview-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e1e4e8;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.overview-card p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.detail {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 400 !important;
    margin-top: 4px;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.skill-card {
    background: #f6f8fa;
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s;
}

.skill-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.skill-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.skill-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Curriculum */
.curriculum {
    background: #fff;
}

.modules-container {
    display: grid;
    gap: 48px;
}

.module-day h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e1e4e8;
}

.modules-list {
    display: grid;
    gap: 12px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f6f8fa;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s;
}

.module-item:hover {
    background: #fff;
    border-color: #333;
}

.module-number {
    font-size: 14px;
    font-weight: 700;
    color: #666;
    background: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #e1e4e8;
}

.module-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Workshop Types */
.workshop-types {
    background: #f6f8fa;
}

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

.type-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
}

.type-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.type-card > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.type-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.type-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.type-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: 700;
}

/* About Trainer */
.about-trainer {
    background: #fff;
}

.trainer-content {
    max-width: 800px;
    margin: 0 auto;
}

.trainer-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.trainer-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.cred-item {
    background: #f6f8fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
}

.cred-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.cred-item span {
    font-size: 14px;
    color: #666;
}

.trainer-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: #f6f8fa;
}

.contact-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e1e4e8;
    text-align: center;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
}

.contact-card a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 1px solid #e1e4e8;
    padding: 40px 0;
}

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

.footer p {
    font-size: 14px;
    color: #666;
}

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

.social-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.social-links a:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .overview-grid,
    .skills-grid,
    .types-grid,
    .credentials,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
