﻿/* ========================================
   IMAGE BANNER SECTION
   ======================================== */

/* Section Container */
.image-banner {
    width: 100%;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #fff;
}

.image-banner-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

/* Picture Container */
.image-banner-picture {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    max-height: 700px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay for Text Readability */
.image-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100% );
    pointer-events: none;
}

/* Content Container */
.image-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}

/* Title */
.image-banner-title {
    font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Subtitle */
.image-banner-subtitle {
    font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin: 0 0 30px;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

/* Button */
.image-banner-btn {
    display: inline-block;
    padding: 16px 50px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
}

    .image-banner-btn:hover {
        background-color: #fff;
        color: #000;
        transform: translateY(-2px);
    }

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Large Desktop */
@media (max-width: 1400px) {
    .image-banner-container {
        padding: 0 40px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .image-banner-picture {
        height: 55vh;
        min-height: 400px;
    }

    .image-banner-title {
        font-size: 36px;
        letter-spacing: 0.1em;
    }

    .image-banner-subtitle {
        font-size: 16px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .image-banner-container {
        padding: 0 24px;
    }

    .image-banner-picture {
        height: 50vh;
        min-height: 380px;
    }

    .image-banner-title {
        font-size: 28px;
        letter-spacing: 0.08em;
    }

    .image-banner-subtitle {
        font-size: 15px;
    }

    .image-banner-content {
        padding: 30px 20px;
    }

    .image-banner-btn {
        padding: 14px 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .image-banner {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .image-banner-container {
        padding: 0 16px;
    }

    .image-banner-picture {
        height: 50vh;
        min-height: 350px;
    }

    .image-banner-title {
        font-size: 22px;
        letter-spacing: 0.06em;
        margin-bottom: 12px;
    }

    .image-banner-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .image-banner-content {
        padding: 24px 16px;
    }

    .image-banner-btn {
        padding: 12px 28px;
        font-size: 11px;
    }
}
