/*
Theme: Sleek Black 2024
Color Palette:
- Background: #111111
- Primary Text: #EAEAEA
- Accent: #00BFFF (Deep Sky Blue)
- Muted: #888888
*/

/* --- Global & Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #111111;
    color: #EAEAEA;
}

h1, h2, h3 {
    font-weight: 700;
    color: #FFFFFF;
}

a {
    color: #00BFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFFFFF;
}

/* --- Header & Navigation --- */
header {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid #333333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo img {
    filter: invert(1);
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

/* --- Main Content & Sections --- */
main {
    padding-top: 100px; /* Offset for fixed header */
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid #222222;
}

.hero {
    text-align: center;
    padding: 8rem 1rem;
    border-bottom: none;
    background: url('../assets/hero-background.jpg') no-repeat center center/cover;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.7);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #888888;
    max-width: 600px;
    margin: 1rem auto;
}

.cta-button {
    display: inline-block;
    background: #00BFFF;
    color: #111111;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    background: #FFFFFF;
    transform: translateY(-5px);
    color: #111111;
}

/* --- About Page --- */
.story-content-full {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-full {
    flex: 1 1 50%;
}

.story-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-text-full {
    flex: 1 1 50%;
    padding: 3rem;
}

.story-text-full h2 {
    color: #00BFFF;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .story-content-full {
        flex-direction: column;
    }
    .story-text-full {
        padding: 2rem;
    }
}


/* --- Services Page --- */
.services-list-full {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item-full {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.service-item-full--reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 50%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1 1 50%;
    padding: 3rem;
}

.service-content h2 {
    color: #00BFFF;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service-item-full, .service-item-full--reverse {
        flex-direction: column;
    }
    .service-content {
        padding: 2rem;
    }
}

/* --- Image Theming --- */
.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.2));
    pointer-events: none;
    border-radius: 8px;
}


/* --- Contact Form --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #888888;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #222222;
    border: 1px solid #444444;
    border-radius: 5px;
    color: #EAEAEA;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFFF;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    background: #1a1a1a;
    border-top: 1px solid #333;
    color: #888888;
}