@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* General Body */
body {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Hero Styles */
.hero {
    background-image: url('../bannera/sod.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 751px;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: overlay;
}

.teksti {
    width: 100%;
    height: 551px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.teksti h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 60px;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.teksti p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    width: 50%;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.teksti button {
    margin-top: 30px;
    width: 165px;
    height: 45px;
    border: none;
    background-color: rgb(198, 176, 105);
    color: white;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.teksti button:hover {
    background-color: transparent;
    border: 1px solid white;
}

/* Marquee */
.marquee-container {
    background: #cc3333;
    /* Red for alert/warning */
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;
    color: white;
    padding: 0 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 10%;
    background: white;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    color: #0a0a0a;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

/* Section Headers */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.title-dark {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 48px;
    color: #0a0a0a;
    line-height: 1;
}

.view-all-btn {
    border: 1px solid #ddd;
    padding: 10px 30px;
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: white;
}

/* Feature Story Section (Inflation) */
.feature-story {
    padding: 80px 5%;
    background: #fafafa;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-img-box {
    position: relative;
}

.feature-img-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-text-box h2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 42px;
    color: #0a0a0a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-text-box .highlight {
    color: #cc3333;
    /* Red for problem focus */
    font-style: italic;
}

.feature-text-box p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #0a0a0a;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Problems Grid (Drugs, Kids, Stimulants) */
.problems-grid-section {
    padding: 80px 5%;
    background: white;
}

.problems-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.problem-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Layout Config */
.pc-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.pc-2 {
    grid-column: span 1;
    grid-row: span 2;
}

.pc-3 {
    grid-column: span 1;
}

.pc-4 {
    grid-column: span 1;
}

.problem-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(80%) brightness(0.8);
}

.problem-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.6);
}

.problem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: 0.3s;
}

.problem-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    color: white;
    margin-bottom: 5px;
}

.problem-desc {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    opacity: 0;
    transition: 0.4s;
}

.problem-card:hover .problem-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Card List Section */
.card-list-section {
    padding: 80px 5%;
    background: #fafafa;
}

.clean-card {
    background: white;
    padding: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #0a0a0a;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.clean-card:hover {
    border-left-color: #cc3333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.clean-card h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.clean-card p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
}

.card-icon {
    font-size: 32px;
    color: #ddd;
    transition: 0.3s;
}

.clean-card:hover .card-icon {
    color: #cc3333;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .problems-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .pc-1 {
        grid-column: span 2;
    }

    .pc-2 {
        grid-row: span 1;
    }

    .feature-story {
        grid-template-columns: 1fr;
    }

    .feature-img-box img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding-bottom: 40px;
    }

    .teksti {
        height: auto;
        padding: 100px 20px;
    }

    .teksti p {
        width: 100%;
    }

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }

    .feature-story {
        padding: 40px 5%;
    }

    .problems-bento-grid {
        grid-template-columns: 1fr;
    }

    .pc-1,
    .pc-2,
    .pc-3,
    .pc-4 {
        grid-column: span 1;
        height: 250px;
    }

    .clean-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-icon {
        text-align: center;
    }

    .cursor {
        display: none;
    }
}