* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #a91e1e;
    color: white;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    padding: 8px 20px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* PAGES */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
    text-align: center;
}

.page.active {
    display: block;
}

/* LOGO */
.logo img {
    width: 140px;
    margin: 20px auto;
    display: block;
}

/* TITLE */
h1 {
    margin: 30px 0;
    letter-spacing: 2px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.card img {
    width: 260px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.card img:hover {
    transform: scale(1.05);
}

.card.single img {
    width: 300px;
    margin-top: 20px;
}

/* CONTACT */
.email {
    margin-top: 40px;
    font-size: 18px;
}

.email a {
    color: white;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}