@charset "utf-8";
/* CSS Document */

/* ===== RESET & FONT ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif, "Negrita Pro", "Lexned Deca"    ;
}


html {
    scroll-behavior: smooth;
	
}





/* ===== PAGE BACKGROUND ===== */
body {
    background-color: #fefade;
	    max-width: 100%;
    overflow-x: hidden;
}

.story-navbar {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff9e6;
    position: sticky; /* sticks to top */
    top: 0;
    z-index: 30;
}

/* Logo */
.nav-logo {
    width: 70px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

/* Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Menu links */
.nav-btn {
    text-decoration: none;
    color: #d62f56;              
    font-weight: 700;
    padding: 8px 25px;
    border: 2px solid #d62f56;    /* Default Pink Border */
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background-color: #d62f56;    /* Changes to Yellow on hover */
    border-color: #d62f56;        /* Border matches yellow */
    color: #fff;                  /* White text for contrast */
}
.nav-btn.active {
    color: #f5d34b;               /* Yellow Text */
    background-color: transparent; 
    border-color: #f5d34b;        /* Yellow Border */
}

.nav-btn.active:hover {
    background-color: #f5d34b;    /* Solid yellow when hovering active link */
    color: #fff;
}

@media screen and (max-width: 768px) {
    .story-navbar {
        flex-direction: column;
        padding: 15px 30px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-btn {
        text-align: center;
        width: 100%;
    }
}









/* FADE IN ON PAGE LOAD */
body {
    opacity: 0;                 /* start invisible */
    transition: opacity 0.8s ease-in-out; /* smooth fade */
}

/* When JS removes the class, fade in */
body.fade-in {
    opacity: 1;
}

/* Optional: links fade effect */
a {
    transition: color 0.3s ease, background-color 0.3s ease;
}





/* ===== HERO IMAGE SECTION ===== */
.bumee-image {
    width: 100%;
    overflow: hidden;
    margin-top: -10px;
    display: flex;
    justify-content: center; /* ← center image */
}

.bumee-image img {
    width: 100%;
    max-width: 1900px;   /* ← control width */
    height: auto;
    max-height: 690px;   /* ← control height */
    object-fit: cover;  /* ← crop instead of stretch */
    display: block;
    margin: 0 auto;
}



.image-text-container {
    position: relative;   /* Anchor for absolute elements */
    width: 100%;
    height: 400px;        /* Adjust container height manually */
}






/* WRAPPER: absolutely positioned */
.custom-image-wrapper {
    position: absolute;
    top: -640px;  /* same as image top */
    left: 50px;   /* same as image left */
    width: 600px; /* same as image width */
    height: auto;
    display: inline-block; /* needed for transform to work */
}

/* FLOAT ANIMATION ON IMAGE */
.custom-image {
    width: 100%; /* fill wrapper */
    height: auto;
    animation: floatY 5s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatY {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* JIGGLE ANIMATION ON WRAPPER */
.custom-image-wrapper.jiggle {
    animation: jiggleX 0.5s ease-in-out;
}

@keyframes jiggleX {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}














/* IMAGE */
.title-image {
    position: absolute;
    top: -650px;            /* Move image up/down */
    left: 750px;           /* Move image left/right */
    width: 550px;         /* Control image size */
    height: auto;
}

/* TEXT */
.text-box {
    position: relative;   /* Anchor for h2 and p */
}

/* TITLE */


/* DESCRIPTION */
.text-box p {
    position: absolute;
    top: -400px;
    left: 750px;
    width: 600px;
	color: #fcf3c8;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 700;
    text-align: justify;
    font-size: 21px;
    line-height: 1.6;
    
}





.sdg-image img {
    width: 100%;           
    height: auto;          
    display: block;
    position: relative;    /* allow movement */
    top: -450px;            /* move image up 50px */
    
    /* OR using transform (better for responsiveness) */
    /* transform: translateY(-50px); */
}


.concept3-text-container {
    position: relative;   /* Anchor for absolute elements */
    width: 100%;
    height: 400px;        /* Adjust container height manually */
}

/* IMAGE */
.concept3-image {
    position: absolute;
    top: -380px;          /* Move image up/down */
    left: 430px;           /* Move image left/right */
    width: 750px;         /* Control image size */
    height: auto;
}


/* ===== STANDARDIZED IMAGE HOVER ANIMATION (EXCLUDES TITLES) ===== */
.imagebox,
.foodwaste-image:not(.image-title),
.upcycling-image:not(.image-title) {
    transition:
        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* IMAGE INSIDE IMAGEBOX (ZOOM ONLY) */
.imagebox img:not(.image-title) {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* ===== STANDARDIZED POP-OUT ON HOVER ===== */
.imagebox:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.imagebox:hover img:not(.image-title) {
    transform: scale(1.05);
}

.foodwaste-image:not(.image-title):hover,
.upcycling-image:not(.image-title):hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}









    

/* MAIN LAYOUT (ONLY FOR LEFT / RIGHT POSITIONING) */
.imagebox-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 50px; /* space between imagebox and content */
}

/* IMAGE BOX (LEFT) */
.imagebox {
    position: relative;

    /* SIZE CONTROL */
    width: 400px;          /* change this freely */
    aspect-ratio: 1 / 1;   /* makes it a perfect square */

    /* POSITION CONTROL */
    top: -500px;              /* move up/down */
    left: 100px;             /* move left/right */

    overflow: hidden;      /* crops image to square */
	
	    width: 450px;      /* resize image visually */
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

/* IMAGE */
.imagebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* locks crop position */
    display: block;
}



/* RIGHT CONTENT CONTAINER */
.content-box {
    position: relative;   /* anchor for manual movement */
    width: 500px;
	 height: 0;
}

/* IMAGE TITLE (IMAGE) */
.image-title {
    position: relative;
    top: -535px;        /* move up/down */
    left: 111px;       /* move left/right */
    width: 490px;    /* manual size control */
    height: auto;
    display: block;
    margin-bottom: 15px;
}

/* DESCRIPTION TEXT */
.image-description {
    position: absolute;   /* ← THIS IS CRITICAL */
    top: -390px;
    left: 150px;

    width: 600px;         /* FIXED WIDTH = NO PUSHING */
    font-size: 25px;
    line-height: 1.6;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 700;
	text-align: justify;
	color: #c42754;
}




.foodwaste-image {
    width: 500px;
    top: -350px;
    left: 900px;
}

.foodwaste-title {
    width: 500px;
    top: -381px;
    left: -340px;
}

.foodwaste-text {
    width: 580px;
    top: -220px;
    left: -310px;
    font-size: 24px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 700;
	text-align: justify;
	color: #c42754;
}



.upcycling-image {
    width: 500px;
    top: -230px;
    left: 90px;
}

.upcycling-title {
    width: 490px;
    top: -260px;
    left: 150px;
}

.upcycling-text {
    width: 560px;
    top: -110px;
    left: 185px;
    font-size: 23px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 700;
	text-align: justify;
	color: #c42754;
		
}










.custom-section {
    position: relative;
    width: 100%;
    height: 800px; /* adjust manually */
}

/* SECTION TITLE */
.section-title {
    position: absolute;
    top: -100px;      
    left: 200px;
    width: 900px;  
    height: auto;
    border-radius: 15px; /* rounded corners */
}

/* SECTION WRAPPER */
.section-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}


/* IMAGE BOX */
.imagebox-left {
    position: absolute;
    top: 180px;    
    left: 80px;
    width: 500px;  
    height: 500px;
    overflow: hidden;
    border-radius: 20px; /* rounded edges */
}

.imagebox-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; /* rounds the image itself */
}

/* RIGHT TEXT BOX */
.text-box-right {
    position: absolute;
    top: 180px;    
    left: 700px;
    width: 780px;  
    height: 500px; 
    background-color: #c42754;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 20px; /* rounded edges */
}

.text-box-right p {
    font-size: 26px;  
    line-height: 1.5;
    margin: 0;
    color: #fefade;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 500;
    position: relative;  /* allows movement inside the box */
    top: 30px;           /* move down 50px without moving the box */
	text-align: justify;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;        /* distance from bottom */
    right: 30px;         /* distance from right */
    width: 50px;
    height: 50px;
    background-color: #c32c53;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 999;
}

/* ===== ARROW (CHEVRON, NO TAIL) ===== */
.scroll-top span {
    width: 14px;
    height: 14px;
    border-left: 4px solid #fefade;
    border-top: 4px solid #fefade;
    transform: rotate(45deg);
    margin-top: 4px; /* optical centering */
}

/* ===== HOVER EFFECT (OPTIONAL) ===== */
.scroll-top:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}

/* --- FOOTER & COLLAB CONTAINER --- */
/* This section holds the pink bar and the copyright */
.collaboration-section {
    width: 100%;
    padding: 20px 40px; /* Space around the pink bar */
    background-color: #fefade; /* Matches page background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* THE PINK "PILL" BOX */
.collab-box {
    position: relative;
    width: 250%;
    max-width: 1485px; /* Adjust based on your container width */
    height: 120px;
    background-color: #c42754;
    border: 2px solid #fefade; /* Thin light border like the image */
    border-radius: 30px; /* Rounded corners for the pill look */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* CONTAINER FOR LOGOS (Inside the pink box) */
.footer-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side (Socials) */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center; /* Keeps icons vertically centered */
}

.social-icons img {
    width: 60px;
    height: auto;
    display: block;
    margin-top: 30px; /* Removed fixed top margin to let flexbox handle it */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    cursor: pointer;
}

/* Hover Effect: Icon grows and brightens */
.social-icons a:hover img {
    transform: scale(1.2); /* Grows 20% larger */
    filter: brightness(1.2);
}

/* Click Effect: Icon shrinks slightly when pressed */
.social-icons a:active img {
    transform: scale(0.9);
    transition: transform 0.1s;
}
/* Right side (Collab Text + Logos) */
.collab-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps everything aligned to the right */
    gap: 12px;             /* Space between the title image and the logos */
}
.collab-tagline {
    font-family: 'NegritaPro', sans-serif;
    color: #fff;
    font-size: 18px;
    margin: 0;
}
.collab-title-img {
    width: 200px;          /* Adjust this width based on your image size */
    height: auto;
    display: block;
    margin-bottom: -10px;    /* Extra fine-tuning for the gap */
}

.partner-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.partner-logos img {
    height: 60px;
    width: auto;
}

/* --- COPYRIGHT FOOTER --- */
.site-footer {
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    text-align: center;
	margin-bottom: -20px;
}

.site-footer p {
    color: #c42754; /* Pink text on yellow background */
    font-size: 16px;
    font-weight: 500px;
	margin-top: 5px;
}