/* ===== GLOBAL STYLE ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

/* ===== HEADER ===== */
header {
    text-align: center;
    background: #e00000;
    color: white;
    padding: 25px 10px;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    margin-top: -5px;
    opacity: 0.9;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 20px;
    text-align: center;
}

.gallery h2 {
    color: #e00000;
    margin-bottom: 15px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.grid img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #e00000;
    transition: 0.3s;
}

.grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #e00000;
}

/* ===== SOCIAL SECTION ===== */
.social {
    text-align: center;
    padding: 20px;
}

.social h2 {
    color: #e00000;
}

.icons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.fb { background: #1877F2; }
.yt { background: #FF0000; }
.ig { background: #E1306C; }

/* ===== FOOTER ===== */
footer {
    text-align: center;
    background: #e00000;
    color: white;
    padding: 12px;
    margin-top: 20px;
}