/* ============================================
   Lilea Charity — CSS Stylesheet
   ============================================ */

/* --- Fonts --- */
@font-face {
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 300;
    src: url("assets/fonts/ubuntu/Ubuntu-Light.ttf") format("truetype");
}
@font-face {
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/ubuntu/Ubuntu-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Ubuntu";
    font-style: normal;
    font-weight: 700;
    src: url("assets/fonts/ubuntu/Ubuntu-Bold.ttf") format("truetype");
}

/* --- CSS Custom Properties --- */
:root {
    --navy: #00083f;
    --navy-light: #0a1a5a;
    --blue: #00c0e0;
    --blue-dark: #0099b8;
    --yellow: #e0c000;
    --yellow-light: #f0d830;
    --gray-light: #e0e0e0;
    --gray: #808080;
    --black: #000000;
    --white: #ffffff;

    --font-main:
        "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --nav-height: 70px;
    --max-width: 1100px;
    --section-padding: 100px 20px;

    --transition: 0.3s ease;
}

/* --- Language visibility (no-JS fallback) --- */
/* When JS hasn't loaded yet (no-js class present), show Italian, hide English */
body.no-js [data-en] {
    display: none !important;
}
body.no-js [data-it] {
    display: block !important;
}
body.no-js .nav-lang-toggle {
    display: inline-block !important;
}

body.no-js .lang-menu {
    display: none !important;
}
/* Hide all language-specific content when JS is active — JS handles it */
body:not(.no-js) [data-it],
body:not(.no-js) [data-en] {
    display: none;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--yellow);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: background var(--transition);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-logo span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 4px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 6px 14px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.nav-lang-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown .nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
}

.lang-arrow {
    transition: transform var(--transition);
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lang-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: background var(--transition);
}

.lang-menu li a:hover {
    background: rgba(224, 192, 0, 0.15);
    color: var(--yellow);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--yellow);
    transition: all var(--transition);
}

/* --- Hero --- */
.hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse at 30% 80%,
            rgba(0, 192, 224, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 70% 20%,
            rgba(224, 192, 0, 0.06) 0%,
            transparent 60%
        );
    pointer-events: none;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 192, 224, 0.2);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.hero p {
    color: var(--gray-light);
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    max-width: 600px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.hero-flag-accent {
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--blue), var(--yellow));
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    background: var(--yellow-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 192, 0, 0.3);
}

/* --- Sections --- */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--blue), var(--yellow));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- Chi Siamo --- */
.about {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-value {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform var(--transition);
}

.about-value:hover {
    transform: translateY(-4px);
}

.about-value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-value h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.about-value p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* --- Cosa Facciamo --- */
.what-we-do {
    background: #f9f9f9;
}

.do-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.do-item:last-child {
    margin-bottom: 0;
}

.do-item.reverse {
    flex-direction: row-reverse;
}

.do-item-text {
    flex: 1;
}

.do-item-text h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.do-item-text p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    text-justify: inter-word;
}

.do-item-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.do-item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.do-item-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--blue), var(--yellow));
}

/* --- Item Slideshow (per image block) --- */
.item-slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
}

.slideshow-img.active {
    opacity: 1;
    position: relative;
}

.slideshow-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 0;
}

.slide-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: scale(1.4);
}

.slide-dot:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--white);
}

/* --- Il Nostro Impatto --- */
.impact {
    background: var(--white);
}

.impact-narrative {
    max-width: 800px;
    margin: 0 auto;
}

.impact-block {
    margin-bottom: 80px;
}

.impact-block:last-child {
    margin-bottom: 0;
}

.impact-block p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 24px;
    text-align: center;
    text-justify: inter-word;
}

.impact-block-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.impact-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.impact-block-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--blue), var(--yellow));
}

.impact-block-caption {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--gray);
    text-align: center;
    font-style: italic;
}

/* --- Dona --- */
.donate {
    background: var(--navy);
    color: var(--white);
}

.donate .section-title h2 {
    color: var(--white);
}

.donate .section-title p {
    color: var(--gray-light);
}

.donate-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.donate-method {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 34px 32px;
    transition: all var(--transition);
}

.donate-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.donate-5x1000-code {
    margin: 20px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 2px;
}

.donate-5x1000-code strong {
    color: var(--yellow);
    font-size: 1.5rem;
    margin-left: 4px;
}

.donate-5x1000-note {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 16px;
    line-height: 1.7;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: left;
}

.donate-method h3 {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-method p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
}

.donate-method code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1rem;
    color: var(--gray-light);
}

.donate-cta-btn {
    margin-top: 20px;
}

.donate-cta-btn a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
}

.donate-cta-btn a:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 192, 0, 0.3);
}

.donate-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all var(--transition);
}

.donate-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.donate-card h3 {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-card p,
.donate-card code {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.donate-card code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.95rem;
}

.donate-card .email-link {
    color: var(--blue);
    font-weight: 700;
}

.donate-palaceholder {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 50px 30px;
    margin: 40px 0;
}

.donate-palaceholder p {
    color: var(--gray);
    font-size: 0.95rem;
}

.donate-palaceholder .placeholder-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    min-width: 260px;
}

.donate-receipt-info {
    margin-top: 30px;
    padding: 24px 28px;
    background: linear-gradient(
        135deg,
        rgba(224, 192, 0, 0.12),
        rgba(0, 192, 224, 0.06)
    );
    border-left: 4px solid var(--yellow);
    border-radius: 0 12px 12px 0;
    text-align: left;
}

.donate-receipt-info p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

.donate-receipt-info strong {
    color: var(--yellow);
    font-size: 1.1rem;
}

/* --- Contatti --- */
.contact {
    background: #f9f9f9;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    text-align: left;
    transition: all var(--transition);
}

.contact-group:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    justify-content: flex-start;
}

.contact-method-icon {
    font-size: 1.5rem;
}

.contact-method a {
    color: var(--navy);
    font-weight: 700;
}

.contact-method a:hover {
    color: var(--blue);
}

.contact-method small {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-method div {
    text-align: left;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white) !important;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.contact-social-link:hover {
    background: var(--blue);
    color: var(--white) !important;
    transform: translateY(-3px);
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: var(--gray-light);
    padding: 50px 20px 30px;
    border-top: 3px solid;
    border-image: linear-gradient(to right, var(--blue), var(--yellow)) 1;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--yellow);
}

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray);
}

.footer-flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    background: linear-gradient(to bottom, var(--blue) 50%, var(--yellow) 50%);
    border-radius: 2px;
    vertical-align: middle;
    margin: 0 4px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .do-item,
    .do-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .do-item-image img,
    .impact-block-image img {
        height: 280px;
    }

    .donate-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-lang-toggle {
        margin-top: 10px;
    }

    /* Mobile: full-width language dropdown, no overflow */
    .lang-dropdown {
        position: relative;
    }

    .lang-menu {
        position: fixed;
        top: calc(var(--nav-height) + 60px);
        left: 0;
        right: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .lang-menu.open {
        transform: translateY(0);
    }

    .lang-menu li a {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        min-height: 90vh;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-socials {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .impact-block-image img {
        height: 220px;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 6px 24px rgba(224, 192, 0, 0.35);
    transform: translateY(-2px);
}

.scroll-top-btn svg {
    pointer-events: none;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}
