/* =========================================
   SAILOR SPRINGS ISOLATED STYLES
   ========================================= */

/* 1. BACKGROUND LOGIC (The Fence) */
#sailor-springs-page {
    background: url('https://github.com/skventuresigns-design/media/blob/main/fence.png?raw=true') no-repeat center center fixed !important;
    background-size: cover !important;
    margin: 0;
    padding: 0;
}

/* 2. HERO SECTION (Red-to-Black Gradient like Louisville) */
.SailorSprings-hero-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom, #eb1c24 0%, #000000 100%) !important;
    overflow: hidden;
    border-bottom: 5px solid #222;
}

/* Dark Overlay for the image */
.SailorSprings-hero-container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.SailorSprings-hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Lets the gradient show through */
}

.SailorSprings-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

/* Title: Lowercase & Shadow like Louisville */
.SailorSprings-overlay h1 {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    text-transform: Capitalize !important;
    font-weight: 700;
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: 2px;
}

.SailorSprings-subtitle {
    font-family: 'Times New Roman', serif;
    font-size: 1.1rem;
    color: white !important;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bold;
    display: block;
}

/* 3. THE SINGLE PAGE CONTAINER */
#sailor-springs-wp-wrapper {
    max-width: 1300px;
    width: 95%;
    margin: 60px auto;
    background-color: #fffdf6 !important; /* Aged Paper Tint */
    border: 3px solid #222;
    padding: 50px;
    box-shadow: 15px 15px 0px #222;
}

/* 4. GRID & CARDS */
.grid {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.card {
    flex: 1;
    background: #fff;
    border: 2px solid #222;
    padding: 25px;
    display: flex;
    flex-direction: column;
    font-family: "Times New Roman", serif;
}

.card h3 {
    text-transform: uppercase;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 900;
}

.card p {
    line-height: 1.6;
    font-size: 1.1rem;
}

/* 5. BIG IMAGES AT BOTTOM */
.image-grid-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.image-grid-container img {
    flex: 1;
    height: 500px; /* Force them big like Xenia */
    object-fit: cover;
    border: 2px solid #222;
    box-shadow: 8px 8px 0px #222;
    filter: grayscale(15%) sepia(8%);
}

/* 6. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .grid, .image-grid-container {
        flex-direction: column;
    }
    .image-grid-container img {
        height: 300px;
    }
    #sailor-springs-wp-wrapper {
        padding: 25px;
    }
}
