/* ================= BASE STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ================= COLORS (inspired by the sample theme) */
:root {
    --light-cream: #F7FADE;
    --orange: #FAA60C;
    --light-gray: #f8f8f8;
    --white: #ffffff;
}

/* ================= HEADER / HERO ================= */
.hero {
    height: 100vh; 
    background-image: url("images/Background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
    padding: 2rem;

    /* Optional overlay for readability */
    background-blend-mode: overlay;
    background-color: --light-cream;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

/* ================= SECTIONS ================= */
.section-light {
    background: var(--light-gray);
    padding: 4rem 0;
    text-align: center;
}

.section-dark {
    background: var(--light-cream);
    color: var(--white);
    padding: 4rem 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1rem;
}

h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* ================= GRID / CARDS ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
    background: var(--light-cream);
    padding: 1rem;
    text-align: center;
    border-radius: 2px;
    color: #333;
    font-weight: bold;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 0;  
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 1rem 0;
}

