@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400&display=swap');

:root {
    --primary-red: #ca363a;
    --dark-grey: #373636;
    --light-grey: #bbb8b9;
    --black-bg: #1a1a1a;
    --text-white: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black-bg);
    color: var(--text-white);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2a2a2a 0%, #111111 100%);
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slogan-highlight {
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--light-grey);
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-grey);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-red);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .logo {
        max-width: 180px;
    }
}

