/* ===============================
   VARIABLES
=============================== */
:root {
    --primary-color: #e0e0e0;    /* main text color */
    --secondary-color: #121212;  /* page background */
    --accent-color: #ffc107;     /* CTA / highlight color */
    --section-bg: #1e1e1e;       /* section background for separation */
    --nav-height: 60px;
}

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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   HEADER / HERO
=============================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: #fff; /* ensures text is readable on image */

    background-image: url('../img/calgary-city.jpg'); /* update path if needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optional dark overlay for better contrast */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* adjust opacity to your liking */
    z-index: 0;
}

/* Ensures content is above overlay */
.hero > * {
    position: relative;
    z-index: 1;
}

.hero__logo {
    width: 180px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn--cta {
    background-color: #462f1d; /* dark wood tone */
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn--cta:hover {
    background-color: #7a6248; /* slightly lighter wood on hover */
    transform: translateY(-2px);
}



/* ===============================
   NAVIGATION
=============================== */
.nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

/* ===============================
   SECTIONS
=============================== */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--section-bg);
    border-radius: 12px;
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

section p {
    margin-bottom: 16px;
}

/* Section separators (centered card-style images) */
.section-separator {
    height: 200px;
    width: 80%;
    max-width: 700px;
    margin: 40px auto 0 auto;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* ===============================
   FOOTER
=============================== */
.footer {
    background-color: #0d0d0d;
    color: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer__contact h2 {
    margin-bottom: 12px;
}

.footer__link {
    color: var(--accent-color);
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__text {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: var(--section-bg);
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 10px;
        border-radius: 6px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .section-separator {
        width: 90%;
        height: 150px;
    }
}
