/* General Reset */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Title Section */
.header {
    display: flex; /* Horizontal layout for h1 and p */
    align-items: center; /* Vertically align content */
    gap: 20px; /* Add space between h1 and paragraph */
    margin-bottom: 40px;
}

.header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #222;
    letter-spacing: 1px;
    border-right: 1px solid #ddd; /* Add vertical keyline */
    padding-right: 20px; /* Add spacing for the keyline */
    margin-right: 20px; /* Gap between keyline and paragraph */
    white-space: nowrap; /* Prevent wrapping */
}

.header p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px; /* Limit paragraph width */
}

/* Cinema Image Section */
.cinema-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* Two Columns Section */
.two-columns {
    display: flex; /* Align columns side by side */
    gap: 40px; /* Add space between columns */
    align-items: flex-start; /* Align columns to the top */
    position: relative; /* For the keyline placement */
}

/* Single Column */
.column {
    flex: 1 1 calc(50% - 20px); /* Columns take up 50% of the width with spacing */
    background: #fff;
    padding: 20px;
    border-radius: 10px;

    position: relative;
}

/* Add a vertical keyline */
.column:first-child {
    border-right: 1px solid #ddd; /* Faint vertical line */
    padding-right: 30px; /* Add spacing to separate the keyline */
}

.column:last-child {
    padding-left: 30px; /* Add spacing to match the left column */
}

/* Column Titles */
.column h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #444;
    letter-spacing: 1px;
    text-transform: capitalize; /* Ensure all words are capitalized */
}

.column h2 span.scottish-name {
    font-variant: small-caps; /* Apply small caps for proper emphasis */

}

/* Paragraphs */
.column p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

/* Links List */
.column ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove left padding */
}

.column ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666;
    position: relative; /* Position for pseudo-element */
    padding-left: 25px; /* Space for custom bullet */
}

/* Right-Facing Arrow for List Items */
.column ul li::before {
    content: "\2192"; /* Unicode for right-facing arrow */
    color: #007B55; /* Contemporary green for arrows */
    position: absolute;
    left: 0; /* Position arrow to the left of text */
    top: 0;
    font-size: 1.2rem; /* Slightly larger than text */
}

/* Links */
.column ul li a {
    text-decoration: none;
    color: #007B55; /* Primary green */
    font-weight: bold;
    transition: color 0.3s ease; /* Smooth hover transition */
}

.column ul li a:hover {
    color: #005F40; /* Darker green for hover state */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack h1 and p vertically */
        align-items: flex-start;
    }

    .header h1 {
        border-right: none; /* Remove keyline in mobile view */
        margin-right: 0;
        padding-right: 0;
    }

    .header h1 img {
    background-color: black; /* Add black background */
    border-radius: 10px; /* Rounded corners */
    padding: 5px; /* Add padding inside the box */
    display: inline-block; /* Ensure the box wraps the image properly */
}

    .two-columns {
        flex-direction: column; /* Stack columns on small screens */
    }

    .column:first-child {
        border-right: none; /* Remove keyline on small screens */
        padding-right: 0;
    }

    .column:last-child {
        padding-left: 0;
    }
}
