/* IdaVesi Minimalist Homepage Styles */
:root {
    --iv-blue: #0055A4;
    --iv-blue-light: #E6F0F9;
    --iv-green: #28A745;
    --iv-green-hover: #218838;
    --iv-text: #333333;
    --iv-text-light: #666666;
    --iv-bg-light: #F8F9FA;
    --iv-white: #FFFFFF;
    --iv-border: #E0E0E0;
}

.iv-homepage-wrapper {
    font-family: 'Roboto', sans-serif;
    color: var(--iv-text);
    width: 100%;
}

.iv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.iv-section {
    padding: 80px 0;
}

.iv-text-center {
    text-align: center;
}

.iv-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--iv-text);
    letter-spacing: -0.5px;
}

/* Hero Section */
.iv-hero-section {
    padding: 100px 0;
    background-color: var(--iv-white);
}

.iv-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.iv-hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--iv-blue);
    margin-bottom: 25px;
}

.iv-hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--iv-text-light);
    max-width: 500px;
}

/* Action Panel */
.iv-action-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iv-action-btn {
    display: block;
    padding: 20px 25px;
    background-color: var(--iv-bg-light);
    text-decoration: none;
    color: var(--iv-blue);
    font-weight: 500;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-align: center;
}

.iv-action-btn:hover {
    background-color: var(--iv-blue-light);
    border-color: var(--iv-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,85,164,0.1);
}

/* News Section */
.iv-news-section {
    background-color: var(--iv-white);
    border-top: 1px solid var(--iv-border);
}

.iv-news-list {
    max-width: 800px;
}

.iv-news-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--iv-border);
}

.iv-news-item:last-child {
    border-bottom: none;
}

.iv-news-date {
    font-size: 14px;
    color: var(--iv-text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.iv-news-headline {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--iv-text);
}

.iv-news-excerpt {
    color: var(--iv-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.iv-read-more {
    font-size: 15px;
    font-weight: 600;
    color: var(--iv-blue);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.iv-read-more:hover {
    border-bottom-color: var(--iv-blue);
}

/* Joining Section */
.iv-joining-section {
    background-color: var(--iv-bg-light);
}

.iv-joining-content {
    max-width: 600px;
    margin: 0 auto;
}

.iv-joining-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--iv-text-light);
}

.iv-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.iv-btn-primary {
    background-color: var(--iv-green);
    color: var(--iv-white);
}

.iv-btn-primary:hover {
    background-color: var(--iv-green-hover);
}

/* Footer Section */
.iv-footer-section {
    background-color: var(--iv-white);
    padding: 60px 0;
    border-top: 1px solid var(--iv-border);
    font-size: 14px;
    color: var(--iv-text-light);
}

.iv-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.iv-footer-col h4 {
    color: var(--iv-text);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.iv-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iv-footer-col ul li {
    margin-bottom: 12px;
}

.iv-footer-col a {
    color: var(--iv-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.iv-footer-col a:hover {
    color: var(--iv-blue);
}

/* Responsive */
@media (max-width: 991px) {
    .iv-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .iv-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .iv-hero-title {
        font-size: 36px;
    }
    
    .iv-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .iv-action-btn {
        padding: 15px;
        font-size: 16px;
    }
}
