@charset "utf-8";
/* CSS Document */

/* ===== RESET & FONT ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ===== GLOBAL FIXES ===== */
img {
    display: block;
    width: 100%;
    vertical-align: middle;
}



/* ===== PAGE BACKGROUND ===== */
body {
    background-color: #fefade;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

/* ==========================
   NAVBAR STYLING (sticky top)
   ========================== */
.story-navbar {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fefade;
    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;              /* default text color */
    font-weight: 700;
    padding: 8px 25px;
    border: 2px solid #d62f56;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Hover effect */
.nav-btn:hover {
    background-color: #d62f56;
    color: #fff;
}

/* Active button */
.nav-btn.active {
    color: #f5d34b;               
    background-color: transparent; 
    border-color: #f5d34b;        
}

.nav-btn.active:hover {
    color: #f5d34b;
    background-color: transparent;
}

/* ==========================
   RESPONSIVE NAVBAR
   ========================== */
@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%;
    }
}

.custom-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px 0px; /* Reduced bottom padding from 50px to 0px */
}

.headline-img {
    max-width: 600px; /* Adjust this to make your headline image bigger or smaller */
    height: auto;
    display: block;
}
/* Main Content */
.container {
    text-align: center;
    padding: 0px 10px; /* Removed negative padding */
}

.headline {
    font-family: var(--headline-font);
    font-size: 5rem;
    color: var(--accent-red);
    margin-bottom: 10px;
    letter-spacing: 2px;
    /* Adding a slight shadow like the mock-up */
    text-shadow: 4px 4px 0px rgba(195, 44, 83, 0.1);
}

.intro-text {
    max-width: 1050px;
    margin: 0px auto 20px auto; /* Reduced bottom margin from 50px to 20px */
    color: #c32c53;
    font-style: italic;
    line-height: 1.6;
	text-align: justify;
		
}
/* --- 1. GLOBAL IMAGE STYLE --- */
/* --- 1. GLOBAL IMAGE STYLE --- */
.dive-item {
    text-align: center;
    transition: z-index 0.3s; /* Ensures the hovered item stays on top */
}

.dive-item a {
    display: inline-block; /* Changed from block to inline-block for better centering */
    overflow: visible;     /* Allows the image to GROW outside its bounds */
    text-decoration: none;
    margin: 0 auto;
	cursor: pointer;
}

.letter-img {
    object-fit: contain;   /* Changed to contain to ensure the WHOLE alphabet is visible */
    display: block;
    margin: 0 auto 10px auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth "pop" effect */
    cursor: pointer;
    transform: scale(1);   /* Start at normal size so it shows fully */
    transform-origin: center center;
}
.letter-img:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* Hover Effects: Now it grows BIGGER and centers */
.dive-item:hover {
    z-index: 10;           /* Brings the hovered letter to the front */
}

.dive-item:hover .letter-img {
    transform: scale(1.15); /* Grows 15% larger */
    filter: brightness(1.05);
}

/* --- 2. INDIVIDUAL ADJUSTMENTS (YOUR CONTROL PANEL) --- */

.d-adjust { 
    width: 150px; 
    height: 210px; 
    object-position: center; /* Ensures the 'D' is centered */
}

.i-adjust { 
    width: 80px; 
    height: 210px; 
    object-position: center; 
}

.v-adjust { 
    width: 180px; 
    height: 210px; 
    object-position: center; 
}

.e-adjust { 
    width: 150px; 
    height: 210px; 
    object-position: center; 
}

/* --- THE GRID FIX --- */
.dive-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 50px;
    padding: 20px 20px; /* Reduced top padding from 60px to 20px */
    max-width: 1200px;
    margin: 0 auto;
}
/* --- COLORS & FONTS --- */
.label {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: bold;
    margin-top: 10px;
}

.label-discover { color: #f5d34b; }
.label-inspire  { color: #c32c53; }
.label-volunteer { color: #00bf63; }
.label-empower   { color: #935eb2; }

p {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 14px;
    color: #333;
}

/* ===== 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;
}