/* css/style.css */
:root {
    --primary: #ff9f43; /* Energetic Orange */
    --dark: #2c3e50;    /* Dark Blue-Grey */
    --light: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fafafa;
}

/* Header & Nav */
header {
    background-color: var(--dark);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); text-decoration: none;}
nav ul { list-style: none; display: flex; padding: 0; margin: 0; }
nav ul li { margin-left: 20px; }
nav ul li a { color: var(--white); text-decoration: none; font-weight: 500; transition: 0.3s; }
nav ul li a:hover, nav ul li a.active { color: var(--primary); }

/* Main Content Area */
main { flex: 1; }

/* Hero Section */
.hero {
    /* Note: Ideally place images in an 'images' folder too */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1532298229144-0ec0c57515c7?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.hero h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.btn {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { background-color: #e67e22; }

/* Page Headers */
.page-header {
    background: var(--light);
    padding: 40px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.card-body { padding: 20px; }
.card-header { background: var(--dark); color: white; padding: 10px 20px; }

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.contact-info, .contact-map { flex: 1; min-width: 300px; }
.info-box { background: var(--white); padding: 20px; border-radius: 8px; margin-bottom: 15px; border-left: 5px solid var(--primary); box-shadow: 0 2px 5px rgba(0,0,0,0.05);}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* Utilities */
.status-open { color: #2ecc71; font-weight: bold; }
.status-closed { color: #e74c3c; font-weight: bold; }

@media(max-width: 768px) {
    .nav-flex { flex-direction: column; }
    nav ul { margin-top: 15px; }
    .hero h1 { font-size: 2rem; }
}