/* =========================================
   EasyBucket.PK — Main Stylesheet
   index.css
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
    --primary:       #E8520A;
    --primary-light: #ff7a3d;
    --primary-dark:  #b83d06;
    --accent:        #f5c27a;
    --dark:          #1a1008;
    --dark-soft:     #2e1c0e;
    --light:         #fdf6f0;
    --muted:         #8a6a52;
    --white:         #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --shadow-soft: 0 8px 32px rgba(232, 82, 10, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.10);

    --radius-circle: 50%;
    --radius-md:     12px;
    --radius-lg:     24px;

    --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

/* =========================================
   HAMBURGER MENU
   ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Animate hamburger → X when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav menu — mobile slide-in */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 7rem 8% 5rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 60%, #5a2d0c 100%);
    position: relative;
    overflow: hidden;
    min-height: 88vh;
}

/* decorative background ring */
.hero-container::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 80px solid rgba(232, 82, 10, 0.07);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.hero-container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 82, 10, 0.06);
    bottom: -80px;
    left: 5%;
    pointer-events: none;
}

/* --- Hero Text --- */
.hero-text {
    flex: 1;
    max-width: 560px;
    z-index: 1;
    animation: fadeSlideUp 0.9s ease both;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 0.2rem;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1.4rem;
    font-weight: 300;
    max-width: 480px;
    line-height: 1.85;
}

/* CTA Button */
.hero-cta {
    display: inline-block;
    margin-top: 2.2rem;
    padding: 0.85rem 2.2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background var(--transition), transform var(--transition);
}

.hero-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* --- Hero Image --- */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.hero-img {
    filter: drop-shadow(020px 20px 60px rgb(232, 255, 255));
}

/* =========================================
   FRONT DISPLAY SECTION
   ========================================= */
.front-display {
    padding: 6rem 6% 7rem;
    text-align: center;
    background: var(--light);
    position: relative;
}

.front-display h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

/* decorative underline on heading */
.front-display h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

.front-display > p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* --- Items Grid --- */
.front-display-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 4rem;
}

.front-display-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   SCENE & BALLOON ANIMATION
   ========================================= */
.scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.translating-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatBalloon 3.6s ease-in-out infinite;
    transform-origin: center bottom;
}

/* =========================================
   BALLOON CIRCLE
   ========================================= */
.balloon-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-circle);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(232, 82, 10, 0.25);
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.balloon-circle:hover {
    box-shadow: 0 12px 40px rgba(232, 82, 10, 0.35);
    border-color: var(--primary);
}

/* Model photo */
.balloon-circle .front-model-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s ease;
}

.balloon-circle:hover .front-model-photo {
    transform: scale(1.1);
}

/* --- Hover Overlay --- */
.balloon-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-circle);
    background: rgba(26, 16, 8, 0.58);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

.balloon-circle:hover::after {
    opacity: 1;
}

/* --- Overlay Text --- */
.balloon-circle .over-lay {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 14px;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 2;
    pointer-events: none;
}

.balloon-circle:hover .over-lay {
    opacity: 1;
}

.balloon-circle h4.over-lay {
    top: 50%;
    transform: translateY(-28px);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.balloon-circle:hover h4.over-lay {
    transform: translateY(-32px);
}

.balloon-circle p.over-lay {
    top: 50%;
    transform: translateY(6px);
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

.balloon-circle:hover p.over-lay {
    transform: translateY(4px);
}

/* =========================================
   BALLOON STRING & SHADOW
   ========================================= */
.translating-wrapper::after {
    content: '';
    display: block;
    width: 2px;
    height: 38px;
    background: linear-gradient(to bottom, rgba(232,82,10,0.6), rgba(232,82,10,0.05));
    margin: 0 auto;
    border-radius: 2px;
}

.balloon-shadow {
    width: 80px;
    height: 14px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 75%);
    border-radius: 50%;
    margin-top: 0;
    animation: shadowPulse 3.6s ease-in-out infinite;
}

/* =========================================
   TEXT SECTION (below each balloon)
   ========================================= */
.text-section {
    margin-top: 1.2rem;
    text-align: center;
    width: 180px;
}

.underline {
    border: none;
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin-bottom: 0.6rem;
}

.bottom-text {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes floatBalloon {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

@keyframes shadowPulse {
    0%   { transform: scaleX(1);    opacity: 0.8; }
    50%  { transform: scaleX(0.65); opacity: 0.4; }
    100% { transform: scaleX(1);    opacity: 0.8; }
}

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

/* Stagger balloon item entrance */
.front-display-item:nth-child(1) { animation: fadeSlideUp 0.7s ease 0.1s both; }
.front-display-item:nth-child(2) { animation: fadeSlideUp 0.7s ease 0.25s both; }
.front-display-item:nth-child(3) { animation: fadeSlideUp 0.7s ease 0.4s both; }

/* =========================================
   RESPONSIVE — TABLET (max 900px)
   ========================================= */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        padding: 5rem 6% 4rem;
        text-align: center;
        min-height: auto;
        gap: 2.5rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text p {
        margin: 1.2rem auto 0;
    }

    .image-container img {
        max-width: 320px;
    }

    .front-display {
        padding: 4rem 4% 5rem;
    }

    .front-display-items {
        gap: 2.5rem;
    }

    .balloon-circle {
        width: 155px;
        height: 155px;
    }

    .text-section {
        width: 155px;
    }
}

/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Show hamburger button */
    .hamburger {
        display: flex;
    }

    /* Hide nav links by default, slide in when active */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--dark-soft);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem 2rem;
        gap: 1.8rem;
        z-index: 1000;
        transition: right var(--transition);
        box-shadow: -4px 0 24px rgba(0,0,0,0.3);
    }

    /* Overlay behind the open menu */
    .nav-menu::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li a {
        font-size: 1.05rem;
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--transition);
    }

    .nav-menu li a:hover {
        color: var(--primary);
    }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (max 600px)
   ========================================= */
@media (max-width: 600px) {
    .hero-container {
        padding: 4rem 5% 3.5rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .image-container img {
        max-width: 260px;
    }

    .front-display {
        padding: 3rem 4% 4rem;
    }

    .front-display > p {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .front-display-items {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .balloon-circle {
        width: 160px;
        height: 160px;
    }

    .text-section {
        width: 160px;
    }

    .bottom-text {
        font-size: 0.78rem;
    }
}

/* =========================================
   RESPONSIVE — VERY SMALL (max 380px)
   ========================================= */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .balloon-circle {
        width: 140px;
        height: 140px;
    }

    .text-section {
        width: 140px;
    }
}