/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Iceland', cursive;
    background: linear-gradient(180deg, #FFFFFF 0%, #A7FFFE 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #000000;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== SCROLLBAR STYLES ===== */
::-webkit-scrollbar {
    width: 5px;

    background: transparent;
}

::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    display: none;

}

::-webkit-scrollbar-thumb {
    background: #2E8B57;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066ff;
}


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


/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    padding: 12px 30px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar {
    max-width: 1463px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

/* Placeholder style when image is missing */
/* .logo-img[src="images/logo.png"] {
    width: 180px;
    height: 70px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 23px;
    color: #000000;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    stroke: #000;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #FFFFFF;
    border-radius: 14px;
    padding: 10px 0;
    min-width: 210px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: rgba(46, 139, 87, 0.06);
    color: #2E8B57;
    padding-left: 26px;
    border-left-color: #2E8B57;
}

.btn-connect-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    min-width: 160px;
    height: 50px;
    background: #000000;
    border-radius: 24px;
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 23px;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.btn-connect-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    min-height: 850px;
    padding-top: 130px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-left: 91px;
    padding-top: 80px;
    max-width: 550px;
}

.hero-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 70px;
    line-height: 68px;
    color: #000000;
    margin-bottom: 30px;
    /* Animation initial state */
    opacity: 0;
    transform: translateY(40px);
}

.hero-title.animate-in {
    animation: fadeSlideUp 0.8s ease forwards;
}

.highlight-water {
    color: #D4A017;
    font-style: italic;
}

.highlight-paper {
    color: #2E8B57;
    text-decoration: underline;
    text-decoration-color: #2E8B57;
    text-underline-offset: 4px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    max-width: 419px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle.animate-in {
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.btn-connect-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    min-width: 240px;
    height: 50px;
    background: #000000;
    border-radius: 24px;
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 23px;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.btn-connect-hero.animate-in {
    animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.btn-connect-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
}


/* ===== HERO VISUAL (Bottle + Leaves) ===== */
.hero-visual {
    position: absolute;
    right: 50px;
    top: 130px;
    width: 700px;
    height: 700px;
}

.hero-leaves {
    position: absolute;
    width: 715px;
    height: 700px;
    top: 40px;
    left: -50px;
    z-index: 1;
    opacity: 0;
}

.hero-leaves.animate-in {
    animation: fadeIn 1.2s ease 0.2s forwards;
}

.leaves-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Placeholder for leaves image */
/* .leaves-img[src="images/hero-leaves.png"] {
    width: 715px;
    height: 688px;
    background: radial-gradient(ellipse at center, rgba(167, 255, 254, 0.25) 0%, transparent 70%);
    border-radius: 50%;
} */

/* .hero-bottle {
    position: absolute;
    width: 320px;
    height: 766px;
    top: 0;
    left: 140px;
    z-index: 5;
    transform: rotate(-14.77deg);
    opacity: 0;
}

.hero-bottle.animate-in {
    animation: bottleFloat 1s ease 0.4s forwards;
}

.bottle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Placeholder for bottle image */
.bottle-img[src="images/hero-bottle.png"] {
    width: 320px;
    height: 766px;
    background: linear-gradient(180deg, #d4c4a8 0%, #c4ad8a 50%, #b89e76 100%);
    border-radius: 40px 40px 20px 20px;
}

*/

/* ===== BENTO GRID SECTION ===== */
.bento-section {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.bento-container {
    max-width: 1380px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.bento-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

.bento-card {
    background: #E9E9E9;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    /* Animation initial state */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.bento-card.animate-in {
    animation: cardReveal 0.6s ease forwards;
}

.bento-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* ===== PRODUCT LABEL ===== */
.product-label {
    display: block;
    padding: 14px 18px 0;
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #333333;
    z-index: 5;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

/* ===== BENTO IMAGE ===== */
.bento-img {
    width: 100%;
    flex: 1;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.5s ease;
    padding: 6px 10px 10px;
}



.bento-card:hover .bento-img {
    transform: scale(1.05);
}


/* ===== ROW 1 SIZES ===== */
.row-1 {
    height: 212px;
}

.row-1 .card-small {
    width: 337px;
    min-width: 337px;
    flex-shrink: 0;
}

.row-1 .card-medium {
    width: 359px;
    min-width: 359px;
    flex-shrink: 0;
}

.row-1 .card-large {
    flex: 1;
}


/* ===== ROW 2 SIZES ===== */
.row-2 {
    height: 291px;
}

.row-2 .card-narrow {
    width: 264px;
    min-width: 264px;
    flex-shrink: 0;
}

.row-2 .card-mid {
    width: 507px;
    min-width: 400px;
    flex-shrink: 1;
}

.row-2 .card-wide {
    flex: 1;
}


/* ===== ROW 3 SIZES ===== */
.row-3 {
    height: 291px;
}

.row-3 .card-large-alt {
    width: 493px;
    min-width: 400px;
    flex-shrink: 0;
}

.row-3 .card-equal {
    flex: 1;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bottleFloat {
    0% {
        opacity: 0;
        transform: rotate(-14.77deg) translateY(60px);
    }

    100% {
        opacity: 1;
        transform: rotate(-14.77deg) translateY(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subtle floating animation for the bottle after initial load */
@keyframes gentleFloat {

    0%,
    100% {
        transform: rotate(-14.77deg) translateY(0);
    }

    50% {
        transform: rotate(-14.77deg) translateY(-12px);
    }
}

.hero-bottle.floating {
    animation: gentleFloat 4s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
    background: #111111;
    color: #FFFFFF;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-brand {
    flex: 1.4;
    min-width: 260px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #aaaaaa;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #A7FFFE;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #aaaaaa;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #A7FFFE;
    padding-left: 6px;
}

.footer-contact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #aaaaaa;
    margin-bottom: 12px;
}

.footer-email {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #A7FFFE;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-email:hover {
    opacity: 0.75;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background: #A7FFFE;
    color: #111111;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 20px 40px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #666666;
}


@media (max-width: 1200px) {
    .hero-content {
        padding-left: 50px;
    }

    .hero-title {
        font-size: 60px;
        line-height: 62px;
    }

    .hero-visual {
        width: 500px;
        right: 20px;
    }

    .hero-bottle {
        width: 240px;
        height: 580px;
    }

    .hero-leaves {
        width: 520px;
        height: 500px;
    }

    .bento-container {
        margin: 0 30px;
    }

    .row-1 .card-small {
        min-width: 220px;
        width: auto;
        flex: 1;
    }

    .row-1 .card-medium {
        min-width: 240px;
        width: auto;
        flex: 1;
    }

    .row-1 .card-large {
        flex: 1.6;
    }

    .row-2 .card-narrow {
        min-width: 180px;
        width: auto;
        flex: 0.5;
    }

    .row-2 .card-mid {
        min-width: 280px;
        flex: 1;
    }

    .row-3 .card-large-alt {
        min-width: 280px;
        width: auto;
        flex: 1.3;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 48px;
        line-height: 52px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin: 0 auto;
    }

    .hero-bottle {
        width: 200px;
        height: 480px;
        left: 50%;
        transform: translateX(-50%) rotate(-14.77deg);
    }

    .hero-leaves {
        width: 400px;
        height: 380px;
        left: 50%;
        transform: translateX(-50%);
    }

    .bento-row {
        flex-wrap: wrap;
    }

    .row-1,
    .row-2,
    .row-3 {
        height: auto;
    }

    .bento-card {
        min-height: 180px;
    }

    .row-1 .card-small,
    .row-1 .card-medium,
    .row-2 .card-narrow,
    .row-2 .card-mid,
    .row-3 .card-large-alt {
        min-width: calc(50% - 16px);
        width: auto;
        flex: 1 1 calc(50% - 16px);
    }

    .row-1 .card-large,
    .row-2 .card-wide,
    .row-3 .card-equal {
        flex: 1 1 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .footer-brand {
        min-width: 100%;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-email {
        display: block;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-link {
        font-size: 24px;
    }

    .btn-connect-nav {
        font-size: 24px;
        min-width: 120px;
        height: 42px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .btn-connect-hero {
        font-size: 24px;
        min-width: 200px;
        height: 44px;
    }

    .bento-container {
        padding: 16px;
        gap: 16px;
        margin: 0 16px;
    }

    .bento-row {
        gap: 16px;
        flex-direction: column;
    }

    .bento-card {
        min-height: 160px;
        width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
    }

    .footer-container {
        padding: 30px 16px;
    }
}