/* ==========================================================
   Cans Landing Page
   ========================================================== */
.cans-landing {
    position: relative;
    min-height: 100vh;
    background-color: #f0eeec;
    overflow-x: hidden;
}

/* ==========================================================
   Full-width teal bands
   ========================================================== */
.cans-band {
    width: 100%;
}

.cans-band--top {
    background: #009b77;
    margin-top: 120px;
}

.cans-band--bottom {
    background: #009b77;
}

/* Gradient fade at bottom: teal → cream → transparent */
.cans-band__fade {
    height: 80px;
    background: linear-gradient(to bottom, #009b77, #f0eeec);
}

/* ==========================================================
   Content grid — centered, max-width constrained
   ========================================================== */
.cans-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    gap: 20px;
}

/* ==========================================================
   Top-left: Cans
   ========================================================== */
.cans-grid__cans {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cans-grid__cans img {
    max-width: 100%;
    width: 340px;
}

/* ==========================================================
   Top-right: Text area with icons
   ========================================================== */
.cans-grid__text {
    position: relative;
    padding: 0 20px;
}

.cans-tagline0,
.cans-tagline1,
.cans-tagline2 {
    font-weight: normal;
    color: #f2f2f2;
}

.cans-grid__text h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 40px 10px;
    text-transform: uppercase;
    text-align: center;
}

h1.cans-tagline0 {
    margin-top: 0;
}

.cans-tagline1 {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1.5;
}

.cans-tagline2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* ==========================================================
   Decorative icons within text area
   ========================================================== */
.cans-decor--mermaid {
    position: absolute;
    top: -25px;
    right: 0;
    width: 150px;
}

.cans-decor--palm {
    position: absolute;
    bottom: 20px;
    left: -20px;
    width: 120px;
}

.cans-decor--sun {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 90px;
}

/* ==========================================================
   Wave strip — cream gap with complementary curved edges
   The top curve dips down on the left and rises on the right.
   The bottom curve is the inverse — rises on the left, dips right.
   They would nest together if the gap closed.
   ========================================================== */
.cans-wave-strip {
    background: #f0eeec;
    height: 160px;
    position: relative;
    overflow: hidden;
    /* Pull the wave strip up so it overlaps under the cans area */
    margin-top: -70px;
    z-index: 1;
}

.cans-wave-strip__top,
.cans-wave-strip__bottom {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
}

/* Teal hanging down from top with curved bottom edge */
.cans-wave-strip__top {
    top: 0;
    height: 75px;
}

/* Teal rising up from bottom with curved top edge */
.cans-wave-strip__bottom {
    bottom: 0;
    height: 75px;
    transform: scaleX(-1);
}

/* ==========================================================
   Bottom-left: Form
   ========================================================== */
.cans-grid__form {
    border: 4px solid #f0eeec;
    background: #f0eeec;
    padding: 30px;
    border-radius: 20px;
}

.cans-grid__form-heading {
    font-size: 1.4rem;
    text-align: center;
    color: #009b77;
    line-height: 1.4;
    margin: 0;
}

.cans-form-embed iframe {
    width: 100%;
    min-height: 160px;
    border: none;
}

.cans-social-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #009b77;
    margin: 20px 0 10px;
    text-align: center;
}

.cans-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cans-social-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #009b77;
    text-decoration: none;
    font-size: 0.75rem;
}

/* ==========================================================
   Bottom-right: Photo
   ========================================================== */
.cans-grid__photo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 5px;
}

.cans-photo-frame {
    position: relative;
    display: inline-block;
    border: 15px solid #f6d93b;
}

.cans-photo-frame img {
    display: block;
    width: 320px;
    max-width: 100%;
}

.cans-photo-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
    color: #009b77;
    text-transform: uppercase;
    line-height: .8;
    text-align: center;
}

/* ==========================================================
   Desktop — min-width: 901px
   ========================================================== */
@media (min-width: 901px) {
    /*.cans-grid__form {*/
    /*    margin-top: 60px;*/
    /*}*/

    .cans-grid {
        max-width: 890px;
    }

    .cans-grid__cans img {
        margin-top: 10px;
    }
}

/* ==========================================================
   Tablet — max-width: 1024px
   ========================================================== */
@media (max-width: 1024px) {
    .cans-band--top {
        margin-top: 84px;
    }

    h1.cans-tagline0 {
        margin-top: 40px !important;
    }

    .cans-decor--mermaid {
        position: absolute;
        top: 0;
        right: -20px;
        width: 130px;
    }

    .cans-decor--palm {
        position: absolute;
        top: 10px;
        left: -13px;
        width: 120px;
    }

    .cans-decor--sun {
        right: -20px;
        bottom: 20px;
        width: 70px;
    }
}

/* ==========================================================
   Mobile — max-width: 900px
   ========================================================== */
@media (max-width: 900px) {
    .cans-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .cans-grid__text {
        text-align: center;
    }

    .cans-grid__text h1 {
        margin: 0 0 20px;
    }

    .cans-grid__photo {
        margin-top: 20px;
    }

    /*.cans-wave-strip {*/
    /*    height: 60px;*/
    /*    margin-top: -15px;*/
    /*}*/

    .cans-wave-strip {
        height: 90px;
        margin-top: 0;
        position: absolute;
        top: 400px;
        left: 0;
        z-index: 0;
        width: 100%;
    }

    .cans-wave-strip__top {
        height: 28px;
    }

    .cans-wave-strip__bottom {
        height: 28px;
    }

    .cans-band__fade {
        height: 60px;
    }
}