/* PhomeCopy Pipe Data Homepage Styles */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-section {
    text-align: center;
    padding: 2rem 0;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.pipe-card {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.pipe-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.pipe-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pipe-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 0.8rem;
}

.pipe-card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.pipe-card-footer {
    display: flex;
    align-items: center;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.pipe-card-footer i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.pipe-card:hover .pipe-card-footer i {
    transform: translateX(5px);
}

.features-grid {
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: #1a3a52;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

a.card-link {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 1.8rem;
    }

    .pipe-card-body {
        padding: 1.5rem;
    }
}
