:root {
    --bg-black: #0a0a0a;
    --text-white: #f5f5f5;
    --accent-red: #e62117;
    --dark-grey: #1a1a1a;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0,0,0,0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-red);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text span { color: var(--accent-red); }

nav ul { display: flex; list-style: none; margin: 0; padding: 0; }
nav ul li { margin-left: 30px; }
nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
nav ul li a:hover { color: var(--accent-red); }

.hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
}

.btn {
    background: var(--accent-red);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover { background: white; color: black; }

.container { padding: 4rem 10%; }
h2 { border-left: 5px solid var(--accent-red); padding-left: 15px; margin-bottom: 2rem; text-transform: uppercase; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: var(--dark-grey);
    padding: 20px;
    border-radius: 4px;
    transition: 0.3s;
}
.card:hover { transform: translateY(-5px); }
.card img { width: 100%; border-radius: 2px; margin-bottom: 15px; }

footer { text-align: center; padding: 4rem; background: #000; border-top: 1px solid #222; font-size: 0.8rem; opacity: 0.6; }
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover { background: #b31912; transform: translateY(-3px); }

.container { padding: 4rem 10%; }

h2 { border-left: 5px solid var(--accent-red); padding-left: 15px; margin-bottom: 2rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card {
    background: var(--dark-grey);
    padding: 15px;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.card:hover { border-bottom: 3px solid var(--accent-red); }

.card img { width: 100%; border-radius: 4px; margin-bottom: 15px; }

.social-links a {
    color: white;
    margin-right: 20px;
    font-size: 1.2rem;
    text-decoration: underline;
}

footer { text-align: center; padding: 3rem; background: #000; border-top: 1px solid #333; }



.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px; /* Size of the logo in the nav bar */
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text span {
    color: #e62117; /* Red primary color */
}