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

body {
    background-color: #0b0d0f; /* Darker background */
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1100px;
    width: 100%;
    background-color: #000000; /* Absolute Black for the top/hero area */
    border: 4px solid #ff5c00; /* Signature Orange Border */
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    padding: 0 0 40px 0; /* Remove top padding for logo overlap */
    position: relative;
    overflow: hidden;
}

/* Typography */
h2 {
    font-family: 'Oswald', sans-serif;
    color: #ff5c00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #ff5c00;
    margin-top: 5px;
}

/* Header & Hero Overlap */
.main-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none; /* Allows clicking hero if needed */
    text-align: center;
}

.logo {
    max-width: 550px; /* Larger logo */
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.8)); /* Strong shadow to stand out from image */
}

.hero {
    margin-top: 75px; /* Dropped down as requested */
    margin-bottom: 0; 
    line-height: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(110%);
}

/* Content & Footer Background (Original Color) */
.content-grid, .main-footer {
    background-color: #1a1e23; /* Original dark gray background */
}

/* Content Grid Padding & Overlap */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    padding: 60px 40px 0 40px; /* Increased top padding for content spacing */
    margin-top: -125px; /* Overlap the hero image */
    position: relative;
    z-index: 5;
    border-top: 4px solid #ff5c00; /* Move the signature border to the overlap line */
}

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

@media (max-width: 700px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .logo { max-width: 300px; }
}

section {
    margin-bottom: 40px;
}

/* Components */
ul {
    list-style: none;
}

ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

ul li::before {
    content: '▶';
    color: #ff5c00;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 92, 0, 0.05);
    border-left: 4px solid #ff5c00;
}

cite {
    display: block;
    font-size: 0.9rem;
    color: #ff5c00;
    margin-top: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Coming Soon Section */
.coming-soon-box {
    background: #000;
    padding: 20px;
    border: 1px dashed #ff5c00;
    text-align: center;
    margin-bottom: 30px;
}

.coming-soon-box p {
    font-family: 'Oswald', sans-serif;
    color: #ff5c00;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.social-icons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.social-icons-grid a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #252a30;
    border-radius: 4px;
    transition: background 0.3s;
}

.social-icons-grid a:hover {
    background: #ff5c00;
}

/* Footer */
.main-footer {
    margin-top: 0; /* Seamless transition */
    padding: 30px 40px 40px 40px;
    border-top: 2px solid #ff5c00;
    text-align: center;
}

.contact-strip {
    font-size: 0.85rem;
    color: #ffffff;
    background: #000;
    padding: 15px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.contact-strip a {
    color: #ff5c00;
    text-decoration: none;
    font-weight: bold;
}
