:root {
    --bg-dark: #fbf9fc;
    /* Light base */
    --bg-darker: #ffffff;
    /* Pure white cards */
    --bg-panel: rgba(255, 255, 255, 0.85);
    /* Glassmorphism on light */
    --border-panel: rgba(137, 65, 137, 0.15);
    /* Soft purple border */

    --text-main: #1a1a1e;
    /* Dark text for readability */
    --text-muted: #5a5a64;
    /* Muted dark text */

    --accent-primary: #894189;
    /* Purple from PDF */
    --accent-primary-glow: rgba(137, 65, 137, 0.2);
    --accent-secondary: #ff904d;
    /* Orange from PDF */
    --accent-secondary-glow: rgba(255, 144, 77, 0.2);

    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--accent-primary);
    /* Use deep purple instead of orange for better contrast on light bg */
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-panel);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--accent-primary-glow);
    border-color: rgba(137, 65, 137, 0.5);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-secondary);
    color: #111;
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}

.btn-primary:hover {
    background-color: #ffaa77;
    box-shadow: 0 0 25px rgba(255, 144, 77, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Hero Section & Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Prevents it from being dead center */
    padding-top: 18vh;
    /* Reduced padding to move content further up */
    overflow: hidden;
    background-color: var(--bg-dark);
    /* Fallback */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Fallback/Placeholder slides using gradients simulating photos */
.bg-placeholder-3 {
    background: linear-gradient(135deg, #5D4157, #A8CABA);
}

.bg-placeholder-4 {
    background: linear-gradient(135deg, #4b6cb7, #182848);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Soft light overlay to ensure text is readable but keeps it light */
    background: linear-gradient(180deg, rgba(251, 249, 252, 0.4) 0%, rgba(251, 249, 252, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.onu-alert {
    display: inline-block;
    color: #ffffff;
    /* High contrast text */
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-primary);
    /* Use deep purple for high contrast instead of light orange */
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--accent-primary-glow);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111;
    /* Explicit dark color for hero title */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(137, 65, 137, 0.2);
    color: var(--accent-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--accent-primary);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(137, 65, 137, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-primary);
    transform: scale(1.3);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.scroll-indicator a:hover {
    color: var(--accent-secondary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Data Section */
.data-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Femicide Highlight Card */
.femicide-highlight-card {
    background-image: url('assets/images/pare.png');
    background-position: calc(100% + 350px) center;
    /* Offsets right center by 350px to hide the empty space */
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);

    border-top: 6px solid var(--accent-primary);
    margin-bottom: 4rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 40px rgba(137, 65, 137, 0.1);
    position: relative;
    overflow: hidden;
}

.femicide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 55%;
    background: rgba(26, 26, 30, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

/* Hide stand-alone mobile image on Desktop */
.femicide-mobile-img {
    display: none;
}

.femicide-alert {
    background: var(--accent-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 144, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 144, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 144, 77, 0);
    }
}

.femicide-content h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1;
}

.femicide-stat-box {
    margin: 2rem 0;
    width: 100%;
}

.femicide-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    display: block;
    line-height: 1;
}

.femicide-number::before {
    content: '+';
    color: var(--accent-secondary);
    font-size: 0.8em;
}

.femicide-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    max-width: 600px;
}

.femicide-content p {
    font-size: 1.15rem;
    max-width: 800px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.data-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    background: rgba(137, 65, 137, 0.15);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(137, 65, 137, 0.3);
}

.data-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.data-context {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.stat {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-primary);
    /* Changed to purple for better contrast in light mode */
    margin-bottom: 0.5rem;
}

.percent {
    font-size: 2.5rem;
}

.data-detail {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.data-subdetail {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-panel);
    padding-top: 1rem;
    margin-top: auto;
}

.national-alert {
    background: linear-gradient(135deg, rgba(255, 144, 77, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-left: 4px solid var(--accent-secondary);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
}

.national-alert h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

/* Project Section */
.project-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.project-text {
    flex: 1;
}

.project-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.project-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.project-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.project-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.target-list {
    list-style: none;
}

.target-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.target-list i {
    color: var(--accent-secondary);
}

.project-image {
    flex: 1;
}

.glass-image-container {
    width: 100%;
    height: 500px;
    background: url('assets/images/maosamarradas.jpeg') center / cover no-repeat;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Move box to the bottom */
    justify-content: center;
    padding-bottom: 1.5rem;
    /* Pushed to the absolute bottom edge */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}



@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.slogan-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    max-width: 85%;
    /* Stretched wider to reduce height */
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    border-left: 4px solid var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-secondary);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

/* Speaker Section */
.speaker-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.speaker-card {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
}

.speaker-card h2 {
    color: var(--accent-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.speaker-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.speaker-role {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.speaker-bio {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Contact Footer */
.contact-section {
    padding: 5rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-panel);
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.footer-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-panel);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}


/* Floating Nav */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* Safest way to center fixed elements with max-width */
    z-index: 1000;
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.85);
    /* Light glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-panel);
    border-radius: 50px;
    padding: 0.5rem 2rem;
    box-shadow: 0 10px 30px rgba(137, 65, 137, 0.08);
    /* Soft purple shadow */
}

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

.nav-logo {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-logo span {
    color: var(--accent-secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-secondary);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* Stacking Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.stacking-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

/* Native CSS Sticky Stacking cards */
.stacking-card {
    position: sticky;
    top: 15vh;
    /* Stops below navbar */
    display: flex;
    align-items: center;
    min-height: auto;
    /* Allow box height to fit content proportionally */
    padding: 0;
    overflow: hidden;
    background: var(--bg-darker);
    border-top: 4px solid var(--accent-primary);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03), 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Individual card offsets for stacking visual effect */
.card-1 {
    top: 12vh;
    z-index: 10;
}

.card-2 {
    top: 15vh;
    z-index: 11;
    margin-top: 50px;
}

.card-3 {
    top: 18vh;
    z-index: 12;
    margin-top: 50px;
}

.stacking-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

@media (max-width: 900px) {
    .stacking-content {
        flex-direction: column;
    }
}

.stacking-text {
    flex: 1;
    padding: 3rem 4rem;
    /* Reduced top/bottom padding to match image side proportions */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.stacking-text h3 {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.stacking-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.stacking-image {
    flex: 1;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stacking-image .img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacking-image i {
    font-size: 6rem;
    color: rgba(137, 65, 137, 0.1);
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image Gallery Sliders */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slider .gallery-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    box-shadow: none;
    /* Handled by container */
}

.gallery-slider .gallery-photo.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.gallery-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.gallery-slider .slider-btn:hover {
    background: var(--accent-primary);
}

.gallery-slider .prev-gallery {
    left: 10px;
}

.gallery-slider .next-gallery {
    right: 10px;
}

/* Fullscreen Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent-secondary);
}

/* Animations for Observer */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .container-flex {
        flex-direction: column;
    }

    section,
    .project-section,
    .gallery-section,
    .author-section,
    .cta-section {
        padding: 3rem 0;
        /* Cut vertical spacing in half for mobile */
    }

    .project-image {
        width: 100%;
    }

    .project-text h2,
    .section-header h2 {
        font-size: 1.8rem;
        /* Reduced for mobile */
    }

    .glass-image-container {
        height: 450px;
        /* Increased slightly to give more room for the background image */
    }

    .slogan-box {
        font-size: 1rem;
        /* Much smaller font to reduce box height */
        padding: 1rem 1.2rem;
        max-width: 90%;
    }

    .quote-mark {
        font-size: 3rem;
        /* Scaled down quote mark */
        top: -5px;
        left: 10px;
    }

    .nav-links {
        display: none;
        /* Hide on small screens for simplicity in this version */
    }

    /* Restore floating elegance: Background image with absolute positioned text box at bottom */
    .femicide-highlight-card {
        padding: 0;
        background-image: url('assets/images/pare.png');
        background-position: center top;
        /* Center the image to show both sides */
        background-size: 150% auto;
        /* Scale the width so the hand fits in the frame */
        background-color: var(--bg-dark);
        border-top: 6px solid var(--accent-primary);
        box-shadow: 0 15px 40px rgba(137, 65, 137, 0.1);
        height: 600px;
        position: relative;
        display: block;
        border-radius: 16px;
    }

    .femicide-mobile-img {
        display: none;
    }

    .femicide-content {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.5rem 2.5rem 1.5rem;
        border-radius: 24px 24px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(26, 26, 30, 0.5);
        /* More transparent */
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        margin: 0;
    }

    .femicide-content h3 {
        font-size: 1.3rem;
        /* Reduced font size */
        margin-bottom: 0.5rem;
        text-align: center;
        /* Centering just the title */
    }

    .femicide-number {
        font-size: 2.2rem;
        /* Reduced font size */
    }

    .femicide-alert {
        font-size: 0.65rem;
        /* Reduced font size */
        padding: 0.3rem 0.8rem;
        margin: 0 auto 0.8rem auto;
        /* Center the badge and keep bottom margin */
        display: block;
        width: fit-content;
    }

    .femicide-label {
        font-size: 0.85rem;
        /* Reduced font size */
        margin-top: 0.3rem;
    }

    .femicide-content p {
        font-size: 0.85rem;
        /* Reduced font size */
    }

    /* Disable Sticky Stacking on Mobile because flex-columns make cards taller than window, causing overlapping */
    .stacking-card {
        position: relative;
        top: 0 !important;
        margin-top: 1.5rem !important;
    }

    /* Force columns instead of row for side-by-side cards */
    .stacking-content {
        flex-direction: column;
    }

    .stacking-text {
        padding: 2rem;
    }

    .stacking-text h3 {
        font-size: 1.8rem;
        /* Dramatically reduced for mobile */
        margin-bottom: 1rem;
    }

    .stacking-image {
        padding: 1.5rem;
        min-height: 250px;
    }

    .nav-logo {
        font-size: 1rem;
        /* Smaller logo font */
    }

    .nav-cta {
        font-size: 0.65rem;
        /* Even smaller button font */
        padding: 0.4rem 0.8rem;
        /* Even tighter padding */
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 15vh;
        min-height: 100vh;
    }

    .nav-cta {
        font-size: 0.6rem;
        /* Tiny font for smallest screens */
        padding: 0.3rem 0.6rem;
        /* Minimal padding */
    }

    .project-text h2,
    .section-header h2 {
        font-size: 1.5rem;
        /* Even smaller for very narrow screens */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat {
        font-size: 3.5rem;
    }

    .speaker-card {
        padding: 1.5rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .slider-controls {
        bottom: 3.5rem;
    }

    .scroll-indicator {
        bottom: 0.5rem;
    }

    .femicide-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .femicide-number {
        font-size: 1.8rem;
    }

    /* Further refine the background size for very narrow screens so the hand isn't cut off */
    .femicide-highlight-card {
        background-size: 180% auto;
    }

    .stacking-text h3 {
        font-size: 1.5rem;
        /* Even smaller for very narrow screens */
    }
}