@font-face {
    font-family: 'CS Quiver Demo';
    src: url('fonts/CsQuiverRegularDemo-ov0o0.otf') format('opentype');
}

@font-face {
    font-family: 'Arial';
    src: url('fonts/ARIAL.TTF') format('truetype');
}

h2 {
     font-family: 'CS Quiver Demo', sans-serif;
    font-size: 1.563rem;
    letter-spacing: 0.063rem;
    color: #1b35b8;
    font-weight: lighter;
    text-align: center;
}
/* 1. REMOVE DEFAULT BROWSER MARGINS */
* {
    box-sizing: border-box;
}

body {
    background-color: #f3eee8;
    font-family: 'Arial';
    color: #000;
    margin: 0;           /* Crucial: Removes white border around the page */
    height: 100vh;
    overflow: hidden;    /* No scrolling */
}

/* --- SPLIT SECTION (FULL SCREEN) --- */
.split-section {
    display: flex;
    width: 100vw;        /* Full Width */
    height: 100vh;       /* Full Height */
    margin: 0;
    padding: 0;          /* Remove padding so image touches edges */
}

/* --- COLUMN 1: TEXT --- */
.text-column {
    flex: 6;             /* 60% Width (Wider text) */
    
    /* Internal Spacing for the text */
    padding: 80px 60px;  /* Top | Side padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Starts at the top */
}

.section-title {
    font-family: 'CS Quiver Demo', sans-serif;
    color: #ff2020;
    font-size: 6rem;     /* Big Title */
    white-space: nowrap;
    margin: 0 0 2rem 0;  /* Spacing below title */
    line-height: 1;
    font-weight: normal;
}



.text-column p {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    text-align: justify;
    max-width: 900px;    /* Keeps text from getting too wide to read */
}

/* --- COLUMN 2: IMAGE (FULL COVER) --- */
.image-column {
    flex: 4;             /* 40% Width */
    height: 100%;        /* Full Height */
    position: relative;
}

.image-column img {
    width: 100%;
    height: 100%;
    
    /* THIS IS THE MAGIC PART: */
    object-fit: cover;   /* Crops the image to fill the area without stretching */
    display: block;      /* Removes tiny bottom gap */
}

/* --- BACK BUTTON --- */
.back-btn-retro {
    position: absolute;
    top: 2rem;
    left: 3rem;          /* Adjusted slightly */
    z-index: 50;
    display: inline-block;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif; 
    font-size: 1.2rem;
    font-weight: 100;
    text-transform: lowercase;
    letter-spacing: 0.125rem;
    padding: 0.625rem 1.25rem;
    border: 0.125rem solid #0000;
    transition: all 0.1s ease;
}

.back-btn-retro:hover {
    transform: translate(-0.063rem, -0.063rem);
    background-color: #333;
    cursor: pointer;
}

/* --- MOBILE VIEW (Tablets & Phones) --- */
@media screen and (max-width: 768px) {

    /* 1. ENABLE SCROLLING */
    body {
        overflow-y: auto;   /* Scrollable */
        height: auto;       /* Grow with content */
    }

    .split-section {
        display: block;     /* Stack vertically */
        width: 100%;
        height: auto;
        
        /* Padding: Top clears header, Bottom 0 for image flush */
        padding: 5rem 2rem 0 2rem; 
        margin: 0;
    }

    /* 2. HEADER ALIGNMENT (Button Left / Logo Right) */
    
    /* Back Button */
    .back-btn-retro {
        position: absolute;
        top: 1.5rem;          /* Pinned Top */
        left: 1.5rem;         /* Pinned Left */
        bottom: auto;       /* Reset desktop styles */
        
        /* Mobile Style */
        background-color: #000 !important;
        color: #fff !important;
        border: none;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        z-index: 100;
    }

    /* Logo */
    .top {
        position: absolute;
        top: 1.5rem;          /* Matches Button Top */
        right: 1.5rem;        /* Pinned Right */
        width: auto;
        margin: 0;
        text-align: right;
        z-index: 100;
    }

    .top h2 {
        font-size: 1.5rem;  /* Balanced with button size */
        margin: 0;
        line-height: 1;     /* Fixes vertical alignment */
    }

    /* 3. TEXT & TITLE STYLING */
    .text-column {
        width: 100%;
        padding: 0;
    }

    .section-title {
        text-align: left;
        font-size: 3.5rem;
        white-space: normal;
        line-height: 1;

        /* EQUAL SPACE TOP & BOTTOM */
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .text-column p {
        text-align: justify;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* 4. BIG MATCH IMAGE (Coming from bottom) */
    .image-column {
        width: 110%;
        display: block;
        
        /* Negative margin pulls it down if needed, or remove padding */
        margin-top: 2rem; 
        padding: 0;
    }

    .image-column img {
        width: 100%;         /* Full width */
        max-width: none;     /* No size limit */
        height: auto;
        display: block;      /* Removes bottom gap */
        
        /* Optional: Scales it up slightly to look imposing */
        transform: scale(1.1); 
        transform-origin: bottom center;
    }

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    background-color: transparent; /* Slight transparency */
    z-index: 100;
}
}