body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
}

/* NAVBAR */
nav {
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav h2 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65') center/cover;
    color: white;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

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

.hero p {
    font-size: 1.2rem;
}

/* BUTTON */
button {
    background: #8B0000;
    color: white;
    border: none;
    padding: 12px 25px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    text-align: center;
}

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

/* GRID */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARDS */
.card {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
}

/* GALLERY */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery img {
    width: 300px;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    padding: 30px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 220px;
        display: none;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }
/* GLOBAL IMPROVEMENTS */
section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

/* HEADINGS */
h1, h2, h3 {
    letter-spacing: 0.5px;
}

/* SUBTLE DIVIDER */
section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #8B0000;
    margin: 10px auto;
}

/* BUTTON HOVER */
button:hover {
    background: #a30000;
}

/* CARD SHADOW */
.card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* IMAGE IMPROVEMENT */
.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
}