/* ================= 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 ================= */

.top-bar {
    background-color: var(--light-cream);
    border-bottom: 1px;
    padding: 12px 24px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-btn {
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 999px; 
    background-color: var(--orange);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.top-btn + .top-btn {
    margin-left: 16px; /* Adjust spacing as needed */
}

.top-btn:hover {
    background-color: #a0522d;
}


.contact-btn:hover {
    background-color: #a0522d;
}

.hero {
    background-color: --light-cream;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: Arial, Helvetica, sans-serif; 
}

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

.btn-primary {
    display: block;         
    width: 100%;           
    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(--white);
    padding: 1rem 0;
    text-align: center;
}

.section-dark {
    background-image: url("images/Background.jpg");
    background-size: cover;;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 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: 300px;
    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;
}

