/* PMI SATU-SBM Website Styles */
:root {
    --pmi-red: #B22222;
    --pmi-dark-red: #8B0000;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background-color: var(--pmi-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.site-title {
    color: var(--pmi-red);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background-color: var(--pmi-red);
    color: white;
}

/* Main Content Styles */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(207, 84, 109, 0.8), rgba(53, 20, 27, 0.8)), 
                url('/img/vencana.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Section Styles */
.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section h2 {
    color: var(--pmi-red);
    margin-bottom: 1rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--pmi-red);
    padding-bottom: 0.5rem;
}

.section h3 {
    color: var(--pmi-dark-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--pmi-red);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card h3 {
    color: var(--pmi-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--pmi-red);
    font-weight: bold;
}

/* Button Styles */
.cta-button,
.download-button {
    background-color: var(--pmi-red);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover,
.download-button:hover {
    background-color: var(--pmi-dark-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--pmi-red), var(--pmi-dark-red));
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 15px;
}

.cta-section h2 {
    border: none;
    color: white;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

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

/* Testimonial Styles */
.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--pmi-red);
    position: relative;
}

.testimonial:before {
    content: """;
    font-size: 4rem;
    color: var(--pmi-red);
    position: absolute;
    top: -10px;
    left: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    color: var(--pmi-red);
    text-align: right;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer p {
    opacity: 0.8;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: 1rem;
}

.status-badge.beta {
    background-color: #ffc107;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .main {
        padding: 1rem;
    }
    
    .section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav a {
        text-align: center;
        padding: 0.8rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }
    
    .main {
        margin: 0;
        padding: 0;
    }
    
    .section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}