/* style.css */
:root {
    --brand-red: #E60000;
    --brand-orange: #F39200;
    --brand-grey: #666666;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 80px; /* Space for fixed header */
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center; /* Vertically centers the image and text */
    gap: 12px; /* Adds space between the image and the text */
}

.logo-img {
    height: 50px; /* Adjust this height to fit perfectly in your header */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-psv {
    color: var(--brand-red);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-promoters {
    color: var(--brand-grey);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-grey);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-red);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brand-grey);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--brand-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d17d00;
}

.btn-red {
    background-color: var(--brand-red);
}

.btn-red:hover {
    background-color: #b30000;
}

/* Sections */
.section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: var(--brand-red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title span {
    color: var(--brand-grey);
}

/* Footer */
footer {
    background-color: var(--brand-grey);
    color: var(--white);
    padding: 3rem 5% 1rem;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 10px 0;
    }
}