/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-color: #101015;    /* Very dark background */
    --secondary-color: #D62828;   /* Vibrant Red */
    --text-color: #FFFFFF;        /* Pure White */
    --light-grey-text: #E0E0E0;   /* Subtle text */
    --accent-glow: rgba(214, 40, 40, 0.4); /* Subtle glow effect */
    --success-color: #28a745;
    --error-color: #dc3545;
}

/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* --- Header & Navigation --- */
header {
    width: 100%;
    background-color: rgba(16, 16, 21, 0.95);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-small {
    height: 100px;
    width: auto;
    margin-right: 12px;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

nav a {
    color: var(--light-grey-text);
    text-decoration: none;
    font-weight: 400;
    margin-left: 25px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover, nav a.active {
    color: var(--secondary-color);
}

.nav-contact-btn {
    background-color: var(--secondary-color);
    color: var(--text-color) !important;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-contact-btn:hover {
    background-color: #A91E1E;
}

/* --- Footer --- */
footer {
    width: 100%;
    margin-top: auto;
    padding: 20px;
    font-size: 0.85rem;
    text-align: center;
    color: var(--light-grey-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer a {
    color: var(--light-grey-text);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

footer span {
    margin: 5px 10px;
}

/* --- Home Page Specifics --- */
.hero-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(30, 30, 40, 0.8), var(--primary-color));
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-color);
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 15px 35px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 15px var(--accent-glow);
}

.cta-button:hover {
    background-color: #A91E1E;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.content-container h2 {
    font-weight: 600;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.feature-item {
    padding: 25px;
    background-color: #1a1a20;
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Inner Pages (About, Contact, Privacy) --- */
.inner-page .content-container {
    max-width: 900px;
    padding-top: 60px;
}

.inner-page h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
    text-align: center;
}

.inner-page .page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.inner-page h2 {
    font-size: 1.8rem;
    text-align: left;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.inner-page p, .inner-page li {
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-grey-text);
}

.inner-page ul {
    list-style-position: inside;
    padding-left: 10px;
}

/* --- Contact Form Specifics --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background-color: #1a1a20;
    color: var(--text-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px var(--accent-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    cursor: pointer;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 15px 35px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #A91E1E;
}

.submit-button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.status-success { color: var(--success-color); }
.status-error { color: var(--error-color); }

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .logo-small {
        height: 45px;
    }
    .brand-name {
        font-size: 1.2rem;
    }
    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        margin: 5px 10px;
    }
    .hero-section {
        padding: 50px 15px;
    }
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .inner-page h1, .content-container h1 {
        font-size: 2rem;
    }
    .content-container {
        padding: 40px 15px;
    }
    footer {
        flex-direction: column;
    }
}
