:root {
    --primary-color: #e30613;
    /* Bremen Red */
    --dark-bg: #1a1a1a;
    --darker-bg: #111111;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links li a:not(.btn-contact):hover {
    color: var(--primary-color);
}

.logo img {
    height: 45px;
    /* Invert logo to white if it's black, though the SVG might already be handled. 
       Assuming the logo extracted is colored or adaptable. */
}

.btn-contact {
    background-color: var(--primary-color);
    padding: 0.5rem 1.75rem;
    border-radius: 2px;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background-color: #c00410;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(80%) brightness(0.6);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Sections General */
.section {
    padding: 6rem 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 2rem;
}

.line.center {
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background-color: var(--dark-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-text .highlight {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(20%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services */
.services {
    background-color: var(--darker-bg);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.icon-box {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    height: 60px;
    /* Ensure svg is visible */
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Contact */
.contact {
    background-color: var(--dark-bg);
    text-align: center;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 600px;
}

.contact-box {
    background-color: var(--darker-bg);
    padding: 4rem;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.contact-links a {
    font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

.contact-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #000;
    padding: 3rem 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

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

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Subpage Styles */
.subpage-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.subpage-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.content-section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-text h2 {
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.content-text ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.content-text ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.image-column img {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-box {
    background-color: var(--darker-bg);
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
}

.sidebar-box h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.sidebar-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .image-column {
        order: -1;
    }
}