body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
}

header {
    background: #222;
    color: #fff;
    padding: 20px;
}

header nav a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}

.hero {
    padding: 80px 20px;
    text-align: center;
    background: #eee;
}

.cta {
    display: inline-block;
    padding: 10px 20px;
    background: #222;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 6px;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-text {
    max-width: 500px;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
/* Base header styling */
header {
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 1.4rem;
}

/* Desktop nav */
nav a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-size: 1rem;
}

/* Hide toggle button on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ---------------------------
   MOBILE MENU BEHAVIOUR
---------------------------- */
@media (max-width: 700px) {

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Stack nav vertically */
    nav {
        display: none;
        flex-direction: column;
        background: #222;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #444;
    }

    nav a {
        padding: 12px 20px;
        margin: 0;
        border-bottom: 1px solid #333;
    }

    /* When nav is active */
    nav.active {
        display: flex;
    }
}
@media (max-width: 700px) {
    .hero {
        text-align: center;
        justify-content: center;
    }
}
