/* Variables & Reset */
:root {
    --color-primary: #ff8c00;
    /* Orange */
    --color-secondary: #000000;
    /* Black */
    --color-text-light: #ffffff;
    --color-text-dark: #1e293b;
    --color-bg-light: #ffffff;

    --font-heading: 'Franklin Gothic Condensed', 'Oswald', sans-serif-condensed, sans-serif;
    --font-body: 'Franklin Gothic Condensed', 'Oswald', sans-serif-condensed, sans-serif;

    --transition-base: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    line-height: 1.6;
    background-color: var(--color-secondary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    /* Bold */
    font-size: 1.2rem;
    /* Bigger text */
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: #e67e00;
    /* Darker orange */
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    /* White background */
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Subtle dark border */
}

.container-fluid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better contrast */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
}

.banner-content h1 {
    font-size: 4rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.banner-content h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .site-header {
        padding: 1rem;
    }
}