/* =======================================================
   BUZZ AGENCY — responsive.css
   RULE: Nothing here affects screens wider than 1024px.
   Desktop is already perfect. This file ONLY fixes
   mobile (max 768px) and tablet (769px to 1024px).
   Load this AFTER style.css in every <head>.
   ======================================================= */


/* =====================================================
   HAMBURGER BUTTON  (hidden on desktop by default)
   ===================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgb(108, 99, 84);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* =====================================================
   MOBILE NAV DRAWER
   ===================================================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: #fffdeb;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
}

.mobile-nav.open {
    display: flex;
    right: 0;
}

.mobile-nav li a {
    font-size: 20px;
    color: rgb(108, 99, 84);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 6px 12px;
}

.mobile-nav li a:hover { color: #ed5724; }

.mobile-nav li a.contact-us {
    background-color: #ed5724;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    display: inline-block;
}


/* =====================================================
   OVERLAY
   ===================================================== */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1998;
}

.menu-overlay.open { display: block; }


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

    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 16px !important;
        position: fixed !important;
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000;
        background-color: #fffdeb;
    }

    header > ul { display: none !important; }
    .hamburger  { display: flex; }

    header .logo {
        width: 60px !important;
        height: 60px !important;
    }

    /* Hero */
    .hero .desc {
        margin-left: 20px !important;
        margin-right: 20px !important;
        margin-top: 110px !important;
        font-size: 22px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .slogan p {
        font-size: 52px !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 0 16px;
        text-align: center !important;
    }

    /* About Us (index) */
    .about-us {
        flex-direction: column !important;
        padding: 40px 20px !important;
        gap: 24px !important;
    }

    .left-column,
    .right-column {
        transform: translateX(0) !important;
        opacity: 1 !important;
        gap: 16px !important;
        padding: 0 8px !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .content {
        font-size: 24px !important;
        margin: 16px 0 !important;
        padding: 0 10px !important;
        max-width: 100% !important;
    }

    /* Our Process */
    .our-process h2 {
        font-size: 36px !important;
        height: auto !important;
        padding: 0 16px;
    }

    .our-process p {
        font-size: 16px !important;
        height: auto !important;
        padding: 0 16px;
    }

    .cards-s {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 16px;
    }

    .box {
        width: 100% !important;
        max-width: 420px !important;
        height: auto !important;
        min-height: 260px !important;
        margin: 10px auto !important;
    }

    /* Our Service section (GSAP pinned — release on mobile) */
    .our-service {
        height: auto !important;
        min-height: unset !important;
        padding: 40px 16px 60px !important;
        background-position: center !important;
        align-items: center !important;
    }

    .our-service-image { display: none !important; }

    .content-wrapper {
        position: relative !important;
        height: auto !important;
        max-width: 100% !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .content-box {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        margin-top: 0 !important;
        padding: 28px 20px !important;
        width: 100% !important;
    }

    .step-number { font-size: 44px !important; }
    .title       { font-size: 24px !important; }
    .service-item { font-size: 16px !important; }

    /* Portfolio */
    .portfolio-section { padding: 60px 16px 40px !important; }
    .portfolio-title   { font-size: 30px !important; }
    .portfolio-subtitle { font-size: 15px !important; }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .portfolio-item iframe,
    .portfolio-item img { height: 280px !important; }

    /* Partners */
    .partners-section { padding: 40px 16px !important; }

    .partners-logos { gap: 20px; flex-wrap: wrap; }

    .partners-logos img {
        max-height: 70px !important;
        max-width: 130px !important;
    }

    /* Testimonials (GSAP pinned — release on mobile) */
    .testimonials-section {
        height: auto !important;
        padding: 40px 16px !important;
        overflow: visible !important;
    }

    .testimonial-wrapper {
        position: relative !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .testimonial-card {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        flex-direction: column !important;
        padding: 24px 20px !important;
        gap: 16px !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .center-content-test h2 {
        font-size: 32px !important;
        width: 100% !important;
    }

    .testimonial-card p { font-size: 15px !important; }

    /* Insights */
    .Insights-section {
        height: auto !important;
        padding: 30px 16px !important;
        flex-wrap: wrap !important;
    }

    .Insights-section .insight-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
        margin: 0 !important;
    }

    .Insights-section .insight-item {
        width: calc(50% - 12px) !important;
        min-width: 110px;
    }

    .Insights-section .insight-item span { font-size: 20px !important; }
    .Insights-section .insight-item p   { font-size: 12px !important; }

    /* Hide fixed bottom nav */
    .fixed-progress-nav { display: none !important; }

    /* Footer */
    footer { padding: 40px 16px 20px !important; }

    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 28px !important;
    }

    .logo-col img { height: 120px !important; }

    /* ── ABOUT PAGE ── */

    .about-agency-titel {
        margin-top: 90px !important;
        padding: 0 16px 20px !important;
    }

    .about-agency-titel h2 { font-size: 24px !important; }

    .about-agency-titel p {
        width: 100% !important;
        font-size: 15px !important;
        padding: 0 8px;
    }

    .about-us-the-agency {
        height: auto !important;
        padding: 40px 16px !important;
    }

    .about-us-the-agency .agency-row {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .about-us-the-agency .agency-row img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }

    .about-us-the-agency .agency-row h2 { font-size: 16px !important; }

    .our-mission {
        height: auto !important;
        padding: 40px 16px !important;
    }

    .our-mission .cards {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        margin: 0 !important;
    }

    .our-mission .card {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        min-height: 460px !important;
        margin-bottom: 24px !important;
    }

    /* ── OUR SERVICE PAGE ── */

    .our-service-cards {
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px 16px !important;
        gap: 16px !important;
    }

    .our-service-cards .card {
        width: 100% !important;
        max-width: 440px !important;
        height: auto !important;
        min-height: 140px !important;
        margin: 0 !important;
    }

    /* ── CLIENTS PAGE ── */

    .our-clients-titel {
        margin-top: 90px !important;
        padding: 0 16px !important;
    }

    .work-section {
        flex-direction: column !important;
        align-items: center !important;
        margin: 10px 16px !important;
        gap: 24px !important;
    }

    .work-card {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 500px !important;
        padding: 16px !important;
    }

    /* ── OUR WORK PAGE ── */

    .campaign-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px 16px !important;
        gap: 20px !important;
    }

    .campaign-container {
        width: 100% !important;
        max-width: 500px !important;
    }

    .campaign-image-box { height: 440px !important; }

    /* Remove tilts on mobile */
    .item-1, .item-2, .item-3,
    .item-4, .item-5, .item-6 {
        transform: rotate(0deg) !important;
    }
}


/* =====================================================
   TABLET  (769px to 1024px)
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    body { overflow-x: hidden; }

    /* Header */
    header > ul { display: none !important; }
    .hamburger  { display: flex; }

    header .logo {
        width: 80px !important;
        height: 80px !important;
    }

    /* Hero */
    .hero .desc {
        margin-left: 40px !important;
        margin-top: 130px !important;
        font-size: 30px !important;
        width: 460px !important;
        max-width: 90% !important;
    }

    .slogan p {
        font-size: 110px !important;
        width: 100% !important;
        margin-right: 60px !important;
    }

    /* About Us */
    .about-us { padding: 60px 40px !important; }

    .left-column,
    .right-column {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }

    /* Our Process */
    .our-process h2 { font-size: 56px !important; }

    .cards-s {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .box {
        width: 340px !important;
        height: auto !important;
        min-height: 300px !important;
    }

    /* Our Service (release GSAP pin) */
    .our-service {
        height: auto !important;
        padding: 60px 40px !important;
        align-items: center !important;
    }

    .our-service-image { display: none !important; }

    .content-wrapper {
        position: relative !important;
        height: auto !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        margin-top: 0 !important;
    }

    .content-box {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Testimonials (release GSAP pin) */
    .testimonials-section {
        height: auto !important;
        padding: 60px 40px !important;
        overflow: visible !important;
    }

    .testimonial-wrapper {
        position: relative !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
    }

    .testimonial-card {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .center-content-test h2 {
        font-size: 46px !important;
        width: 100% !important;
    }

    /* Insights */
    .Insights-section {
        height: auto !important;
        padding: 30px 24px !important;
    }

    .Insights-section .insight-container {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .Insights-section .insight-item {
        width: calc(33% - 14px) !important;
        min-width: 120px;
    }

    /* Hide fixed bottom nav */
    .fixed-progress-nav { display: none !important; }

    /* Footer */
    .footer-container { flex-wrap: wrap !important; gap: 30px !important; }

    /* ── ABOUT PAGE ── */

    .about-agency-titel {
        margin-top: 120px !important;
        padding: 0 40px 20px !important;
    }

    .about-agency-titel p {
        width: 100% !important;
        font-size: 16px !important;
    }

    .about-us-the-agency {
        height: auto !important;
        padding: 40px !important;
    }

    .about-us-the-agency .agency-row { width: 90% !important; }

    .about-us-the-agency .agency-row img {
        width: 380px !important;
        height: auto !important;
    }

    .our-mission {
        height: auto !important;
        padding: 40px !important;
    }

    .our-mission .cards {
        height: auto !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .our-mission .card {
        width: 280px !important;
        height: auto !important;
        min-height: 480px !important;
    }

    /* ── OUR SERVICE PAGE ── */

    .our-service-cards { padding: 30px 40px !important; }

    .our-service-cards .card {
        flex: 1 1 calc(45% - 20px) !important;
        height: auto !important;
        min-height: 180px !important;
    }

    /* ── CLIENTS PAGE ── */

    .our-clients-titel { margin-top: 120px !important; }

    .work-card { flex: 1 1 calc(50% - 20px) !important; }

    /* ── OUR WORK PAGE ── */

    .campaign-container {
        width: 100% !important;
        max-width: 460px !important;
    }

    .campaign-image-box { height: 580px !important; }
}