/* /themes/default/style.css */

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #c93737;
}

h1, h2, h3, h4, h5, h6 {
    color: #10be5c;
}

/* Hero Section */
.hero-section {
    min-height: 80vh; /* Takes up 80% of screen height */
    background-size: cover;
    background-position: center;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Project Cards */
.project-card {
    transition: transform 0.3s;
}
.project-card:hover {
    transform: scale(1.02);
}
.object-fit-cover {
    object-fit: cover;
}