/* ============================================
   Bonaire Dive Week 2026 - Landing Page
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --pink:        #E91E8C;
    --pink-light:  #F06BA8;
    --pink-soft:   #F8C8DC;
    --blue:        #0099D8;
    --blue-dark:   #003B7C;
    --blue-light:  #7DD3F7;
    --green:       #8DC63F;
    --green-dark:  #6CB33F;
    --orange:      #F7941D;
    --yellow:      #FFF200;
    --red:         #ED1C24;
    --white:       #FFFFFF;
    --off-white:   #F7F9FC;
    --gray-light:  #E8ECF1;
    --gray:        #94A3B8;
    --dark:        #1E293B;
    --max-width:   1200px;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Page Wrapper --- */
.page-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    background: var(--white);
    box-shadow: 0 0 80px rgba(0, 59, 124, 0.06);
}

/* --- Animated Background Bubbles --- */
.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    opacity: 0.08;
    animation: rise linear infinite;
}

.bubble:nth-child(1) {
    width: 40px; height: 40px;
    left: 5%;
    background: var(--pink);
    animation-duration: 18s;
    animation-delay: 0s;
}
.bubble:nth-child(2) {
    width: 25px; height: 25px;
    left: 15%;
    background: var(--blue);
    animation-duration: 22s;
    animation-delay: 3s;
}
.bubble:nth-child(3) {
    width: 55px; height: 55px;
    left: 35%;
    background: var(--green);
    animation-duration: 20s;
    animation-delay: 1s;
}
.bubble:nth-child(4) {
    width: 30px; height: 30px;
    left: 50%;
    background: var(--orange);
    animation-duration: 24s;
    animation-delay: 5s;
}
.bubble:nth-child(5) {
    width: 45px; height: 45px;
    left: 65%;
    background: var(--pink-light);
    animation-duration: 19s;
    animation-delay: 2s;
}
.bubble:nth-child(6) {
    width: 20px; height: 20px;
    left: 78%;
    background: var(--blue-light);
    animation-duration: 25s;
    animation-delay: 4s;
}
.bubble:nth-child(7) {
    width: 35px; height: 35px;
    left: 88%;
    background: var(--green-dark);
    animation-duration: 21s;
    animation-delay: 6s;
}
.bubble:nth-child(8) {
    width: 50px; height: 50px;
    left: 95%;
    background: var(--yellow);
    animation-duration: 17s;
    animation-delay: 1s;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.08;
    }
    50% {
        opacity: 0.12;
    }
    100% {
        transform: translateY(-110vh) scale(1.3) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        #f0f8ff 100%
    );
    padding: 60px 40px 40px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--pink) 0%,
        var(--red) 12%,
        var(--orange) 25%,
        var(--yellow) 37%,
        var(--green) 50%,
        var(--green-dark) 62%,
        var(--blue) 75%,
        var(--blue-dark) 87%,
        var(--pink) 100%
    );
}

.hero__logo-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInDown 1s ease-out;
}

.hero__logo {
    width: 100%;
    filter: drop-shadow(0 4px 20px rgba(0, 59, 124, 0.08));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TAGLINE SECTION
   ============================================ */
.tagline {
    padding: 50px 40px 60px;
    text-align: center;
    position: relative;
    background: var(--white);
}

.tagline__decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.tagline__decoration:last-child {
    margin-bottom: 0;
    margin-top: 30px;
}

.tagline__block {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.tagline__block--pink   { background: var(--pink); animation-delay: 0s; }
.tagline__block--blue   { background: var(--blue); animation-delay: 0.2s; }
.tagline__block--green  { background: var(--green); animation-delay: 0.4s; }
.tagline__block--orange { background: var(--orange); animation-delay: 0.6s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
}

.tagline__heading {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--blue-dark);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -0.5px;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline__heading::before,
.tagline__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 2px;
}

.tagline__heading::before {
    top: -16px;
    width: 60px;
    background: var(--pink);
}

.tagline__heading::after {
    bottom: -16px;
    width: 60px;
    background: var(--blue);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PHOTOS SECTION
   ============================================ */
.photos {
    padding: 20px 40px 60px;
    background: var(--white);
    text-align: center;
}

.photos__image {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow:
        0 8px 30px rgba(0, 59, 124, 0.10),
        0 2px 8px rgba(0, 59, 124, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photos__image:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 50px rgba(0, 59, 124, 0.14),
        0 4px 12px rgba(0, 59, 124, 0.08);
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-soon {
    padding: 70px 40px;
    background: linear-gradient(
        135deg,
        #f0f8ff 0%,
        #fff5f9 50%,
        #f0fff4 100%
    );
    text-align: center;
    position: relative;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gray-light),
        transparent
    );
}

.coming-soon__content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon__icon {
    color: var(--blue);
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.coming-soon__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
}

.coming-soon__text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

.coming-soon__divider {
    width: 50px;
    height: 4px;
    margin: 30px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--pink), var(--blue));
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 60px 40px 70px;
    background: var(--white);
    text-align: center;
}

.contact__card {
    max-width: 550px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fdf2f8 0%, #eff6ff 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow:
        0 4px 24px rgba(0, 59, 124, 0.06),
        0 1px 4px rgba(233, 30, 140, 0.04);
    position: relative;
    overflow: hidden;
}

.contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--blue));
}

.contact__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.contact__text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

.contact__email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px rgba(233, 30, 140, 0.3),
        0 2px 4px rgba(233, 30, 140, 0.15);
    letter-spacing: 0.2px;
}

.contact__email-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 28px rgba(233, 30, 140, 0.35),
        0 4px 8px rgba(233, 30, 140, 0.2);
    background: linear-gradient(135deg, #d1198a 0%, var(--pink) 100%);
}

.contact__email-link:active {
    transform: translateY(0) scale(0.98);
}

.contact__email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__email-icon svg {
    stroke: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 30px 40px 24px;
    text-align: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.footer__mosaic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 1fr;
    gap: 0;
}

.footer__tile {
    display: block;
}

.footer__tile--1 { background: var(--pink); }
.footer__tile--2 { background: var(--red); }
.footer__tile--3 { background: var(--orange); }
.footer__tile--4 { background: var(--yellow); }
.footer__tile--5 { background: var(--green); }
.footer__tile--6 { background: var(--green-dark); }
.footer__tile--7 { background: var(--blue); }
.footer__tile--8 { background: var(--blue-dark); }

.footer__text {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 40px 24px 30px;
    }

    .hero__logo-container {
        max-width: 90%;
    }

    .tagline {
        padding: 36px 24px 44px;
    }

    .tagline__heading {
        font-size: 1.5rem;
    }

    .photos {
        padding: 16px 24px 44px;
    }

    .photos__image {
        border-radius: 10px;
    }

    .coming-soon {
        padding: 50px 24px;
    }

    .coming-soon__title {
        font-size: 1.3rem;
    }

    .coming-soon__text {
        font-size: 0.95rem;
    }

    .contact {
        padding: 44px 24px 56px;
    }

    .contact__card {
        padding: 36px 24px;
    }

    .contact__title {
        font-size: 1.2rem;
    }

    .contact__email-link {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .footer {
        padding: 24px 24px 20px;
    }
}

@media (max-width: 480px) {
    .tagline__heading {
        font-size: 1.25rem;
    }

    .coming-soon__title {
        font-size: 1.15rem;
    }

    .contact__email-link {
        font-size: 0.95rem;
        padding: 12px 24px;
        gap: 8px;
    }
}
