/* Base Styles */
body {
    font-family: 'Titillium Web', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #15151e;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(21, 21, 30, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4em;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.5em;
    font-style: italic;
    margin: 0;
    font-weight: 300;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #15151e;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eaeaea;
}

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

.app-icon {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #eaeaea;
}

.card-text {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
    color: #428bca; /* Kept your original blue */
}

.card-text p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

/* Upcoming Projects Styling */
.upcoming-project {
    background: #f9f9fc;
    border-style: dashed;
    border-color: #cccccc;
}

.upcoming-project .card-text h3 {
    color: #888;
}

.badge {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 10px;
    background: #e0e0e0;
    color: #666;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background-color: #15151e;
    color: white;
}



