:root {
    --deep-blue: #0B132B;
    --concrete: #8D99AE;
    --copper: #D98324;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--white);
    background-color: var(--deep-blue);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(11, 19, 43, 0.9);
    backdrop-filter: blur(5px);
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--copper);
}

.parallax-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.1);
    z-index: -1;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.4); 
    z-index: -1;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 19, 43, 0.3), transparent 50%);
    z-index: -1;
}


.content-box {
    max-width: 1200px;
    width: 80%;
    position: relative;
    z-index: 1;
}

.hero .content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-mark {
    margin-bottom: 20px;
}

.brand-text {
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
}

.quarter-circle {
    width: 100px;
    height: 100px;
    background-color: var(--copper);
    border-radius: 0 0 100px 0;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: -1;
}

.main-title {
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    border-top: 1px solid var(--white);
    padding-top: 20px;
    width: 100%;
}

.left-align {
    text-align: left;
}

.section-title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 20px;
    font-style: italic;
}

.divider {
    width: 100px;
    height: 2px;
    background-color: var(--concrete);
    margin-bottom: 30px;
}

.text-list {
    list-style: none;
}

.text-list li {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--concrete);
}

.text-list li strong {
    font-weight: 700;
    color: var(--white);
}

.center-align {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section-title.dark-mode {
    color: #0B132B; 
    text-shadow: 0px 0px 20px rgba(255,255,255,0.2);
}

.quote-box {
    background: rgba(11, 19, 43, 0.9);
    padding: 40px;
    border-radius: 4px;
    border-left: 5px solid var(--copper);
    max-width: 600px;
}

.quote-box p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
}

.highlight-text {
    font-weight: 700;
    color: var(--copper);
}

.solid-section {
    background-color: var(--deep-blue);
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    width: 100%;
}

.contact-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.3));
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-headline {
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 50px;
}

.contact-details {
    margin-bottom: 50px;
}

.label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--concrete);
}

.contact-link {
    display: block;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--copper);
}

.team-names {
    font-size: 0.9rem;
    color: var(--concrete);
    margin-top: auto;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .brand-text { font-size: 3rem; }
    .main-title { font-size: 2rem; }
    .section-title { font-size: 2.5rem; }
    .text-list li { font-size: 1.2rem; }
    
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .contact-headline { font-size: 2rem; }
    .contact-link { font-size: 1.5rem; }
}

.hero-logo {
    width: 50%;
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 300px;
    }
}

.sub-footer {
    background-color: #050a18;
    padding: 30px 50px 10px 50px;
    border-top: 1px solid rgba(141, 153, 174, 0.2);
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.legal-column h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.legal-column p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--concrete);
    font-weight: 300;
}

.copyright-bar {
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(141, 153, 174, 0.1);
    font-size: 0.7rem;
    color: rgba(141, 153, 174, 0.5);
}

@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}