/* Beach Page Specific Styles */

/* Hero Section */
.beach-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: -1px;
    overflow: hidden;
}

.beach-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.beach-hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

.beach-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
}

.beach-hero h1 span {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.beach-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    color: #f8f9fa;
}

/* Wave Divider */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotate(180deg);
}

.wave-container .shape-fill {
    fill: #FFFFFF;
}

/* Rich Content Section */
.rich-content {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff, var(--light));
}

.rich-block {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
    position: relative;
}

.rich-text::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--sand);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    top: -20px;
    left: -20px;
}

.rich-block:nth-child(even) {
    flex-direction: row-reverse;
}

.rich-text {
    flex: 1;
    position: relative;
}

.rich-text h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.rich-text h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

.rich-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1rem;
}

.rich-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 450px;
    position: relative;
}

.rich-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.rich-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.rich-image:hover img {
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    margin: 15px auto 0;
    border-radius: 5px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-load-more:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 134, 194, 0.3);
}

/* Mobile Optimizations */
@media (max-width: 768px) {

    /* Hero Section - Mobile */
    .beach-hero {
        height: 60vh;
        min-height: 400px;
    }

    .beach-hero-content {
        padding: 20px 15px;
    }

    .beach-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .beach-hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .wave-container svg {
        height: 40px;
    }

    /* Rich Content - Mobile */
    .rich-content {
        padding: 3rem 0;
    }

    .rich-block {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .rich-block:nth-child(even) {
        flex-direction: column !important;
    }

    .rich-text {
        padding: 0 20px;
    }

    .rich-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .rich-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .rich-text::before {
        width: 60px;
        height: 60px;
        top: -10px;
        left: 10px;
    }

    .rich-image {
        height: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .rich-image:hover img {
        transform: scale(1.05);
    }

    /* Section Headers - Mobile */
    .section-header {
        margin-bottom: 2.5rem;
        padding-top: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* Load More Button - Mobile */
    .btn-load-more {
        padding: 10px 28px;
        font-size: 0.9rem;
        width: auto;
        max-width: 90%;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .beach-hero h1 {
        font-size: 2rem;
    }

    .beach-hero p {
        font-size: 1rem;
    }

    .rich-text h2 {
        font-size: 1.6rem;
    }

    .rich-image {
        height: 250px;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .wave-container svg {
        height: 30px;
    }
}