/* Reset & Global */
:root { --primary-color: #ff0000; --bg-color: #050505; --text-color: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-color); color: var(--text-color); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
    z-index: 1000; background: #000;
}
.logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--primary-color); font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #ddd; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: #000;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    transition: 0.4s; z-index: 2000;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; color: #fff; }
.mobile-menu a:hover { color: var(--primary-color); }
.close-menu { position: absolute; top: 20px; right: 30px; font-size: 3rem; cursor: pointer; color: #fff; }

/* Contact Content */
.main-content { flex: 1; margin-top: 100px; padding: 0 20px 60px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.page-title { font-family: 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 50px; text-transform: uppercase; }

.contact-box {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
}

.contact-item {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    min-width: 300px;
    border: 1px solid #222;
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.email-link {
    font-size: 1.1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.email-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-socials a {
    font-size: 1.5rem;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-socials a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
footer { padding: 40px 20px; background-color: #000; text-align: center; border-top: 1px solid #222; }
.social-icons a { font-size: 1.5rem; margin: 0 15px; color: #fff; }
.social-icons a:hover { color: var(--primary-color); }
footer p { font-size: 0.8rem; color: #666; margin-top: 10px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}