:root {
    /* Brand Colors based on Logo/Request */
    --brand-red: #C62828; /* Deep Red approximation from logo */
    --brand-black: #1a1a1a;
    --brand-white: #ffffff;
    --bg-color: #f5f5f5; /* Light gray for background to make white logo pop if transparent, or just clean look */
    --text-color: #333333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--brand-red); /* Bold background choice based on "vibrant" requirement, or maybe keep it clean? Let's go with a clean background with bold elements as planned. */
    background: radial-gradient(circle at center, #ffffff 0%, #f0f0f0 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Banner Styles - Mimicking the dynamic/diagonal look of reference */
.banner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Rotation for the diagonal effect */
    transform: rotate(-5deg);
    margin: 2rem 0;
}

.banner-main {
    background-color: var(--brand-black);
    color: var(--brand-white); /* High contrast */
    padding: 0.8rem 3rem;
    transform: skewX(-10deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.banner-main h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.banner-sub {
    background-color: var(--brand-white);
    color: var(--brand-red);
    padding: 0.5rem 2.5rem;
    transform: skewX(-10deg) translateY(-50%); /* Overlap */
    margin-top: -10px; /* Pull it up */
    border: 2px solid var(--brand-black); /* Add border to define it against light background */
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
    z-index: 1;
    margin-left: 50px; /* Offset design */
}

/* Alternative design: Red secondary banner to match brand strictly */
.banner-sub {
    background-color: var(--brand-red);
    color: var(--brand-white);
    border: none;
}

.banner-sub h2 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Description Text */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
    font-weight: 400;
}

.brand-tagline {
    font-family: 'Times New Roman', serif; /* Matching the serif font in the logo tagline */
    font-style: italic;
    font-size: 1.5rem;
    color: var(--brand-black);
    margin-top: 1rem;
}

.location {
    font-weight: 900;
    color: var(--brand-red);
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-main h1 {
        font-size: 2.5rem;
    }
    
    .banner-sub h2 {
        font-size: 1rem;
    }
    
    .banner-container {
        transform: rotate(0deg); /* Reset rotation on small screens if it causes overflow issues, or keep it */
        /* Keeping rotation but ensuring fit */
        transform: rotate(-3deg) scale(0.9);
    }
    
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner-main h1 {
        font-size: 1.8rem;
        padding: 0.5rem 1rem;
    }
    
    .banner-sub {
        margin-left: 20px;
    }
    
    .logo {
        max-width: 180px;
    }
}
