/* ================================
   Global Styles
   ================================ */
body, html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Play', sans-serif;
    font-weight: 700;
}

/* =================================
   Prevent Horizontal Overflow
   ================================= */

body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ================================
   Top Banner
   ================================ */

.top-banner {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.top-banner-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;  /* evenly spread */
    align-items: center;
}

/* Left Logo */
.logo-left {
    width: 300px;
    height: 100px;
    object-fit: contain;
}

/* Centre Logo */
.logo-centre {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Right Logo */
.logo-right {
    width: 300px;
    height: 100px;
    object-fit: contain;
}

/* ================================
   Mobile
   ================================ */

@media (max-width: 768px) {

    .top-banner-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-left,
    .logo-centre,
    .logo-right {
        width: auto;
        height: auto;
        max-width: 90%;
    }
}

/* ================================
   Slideshow Title Bar
   ================================ */
.title-bar {
    background: #000;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    font-family: 'Play', sans-serif;   /* UPDATED */
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .title-bar {
        height: 50px;
        font-size: 16px;
        padding: 0 10px;
    }
}

/* ================================
   Content Section
   ================================ */

.content {
    width: 100%;
    padding: 40px 20px;   /* better vertical spacing */
}

/* Main content container */
.text-column {
    width: 100%;
    max-width: 900px;     /* exact layout width */
    margin: 0 auto;
}

/* Improve readability */
.text-column p {
    line-height: 1.7;
    margin-bottom: 0px;
    text-align: justify;
    hyphens: auto;
}

.text-column h2 {
    margin-top: 0;
}

/* =================================
   Tour Full Width Image
   ================================= */

.static-image-container {
    width: 100%;
    background: #000;   /* optional */
}

.static-image-container img {
    width: 100%;
    height: auto;       /* critical for scaling */
    display: block;
}

/* ================================
   Slideshow
   ================================ */
.slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   Pre-footer grey bar
   ================================ */
.pre-footer-bar {
    width: 100%;
    height: 25px;               /* 10px high */
    background: #b4b3b3;           /* grey color */
    border-bottom: 1px solid #fff; /* 1px white line under */
}

/* ================================
   Footer
   ================================ */
/* Full width black background */
.footer-wrapper {
    width: 100%;
    background: #000;
    padding: 0;
}

/* Footer container */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 20px;
    color: #fff;
}

/* Footer columns with vertical lines */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
    position: relative;
    padding-left: 10px;
}

/* Add vertical line to ALL columns including the first */
.footer-column::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
}

/* Mobile: remove vertical lines */
@media (max-width: 768px) {
    .footer-column::before {
        display: none !important;
    }
}

/* Links with arrow icon */
.footer-column a {
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 12px;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Mobile: stack footer columns vertically */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
        max-width: 100%;
        gap: 20px;
    }
    .footer-column {
        width: 100%;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    .footer-column:not(:first-child)::before {
        display: none;
    }
}

/* ================================
   Copyright Bar
   ================================ */
.copyright {
    background: #666;        /* grey */
    color: #FFF;             /* black text */
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    border-top: 1px solid #fff;  /* 1px white line above */
}

/* ================================
   Partner Logos
   ================================ */

.partner-logos {
    width: 100%;
    padding: 30px 20px;
}

.partner-logos-container {
    max-width: 900px;        /* Match site container */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;               /* Even spacing between logos */
}

.partner-logo img {
    width: 250px;
    height: 150px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Subtle hover lift */
.partner-logo img:hover {
    transform: translateY(-4px);
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 768px) {
    .partner-logos-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* =================================
   Default Link Styling (Content Area Only)
   ================================= */

/* Only affect links inside the main content container */
a.content-link {
    color: #333;
    text-decoration: underline;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

a.content-link:hover {
    color: #999;
    text-decoration: none;
}