/*
Theme Name: svoltatheme
Author: Carmine Pacilio
Description: Modern Theme for svoltastudenti!
Version: 1.0
*/

/* --- FONT IMPORTS --- */
@font-face {
    font-family: 'ClashDisplay-Bold'; 
    src: url('fonts/ClashDisplay-Bold.otf') format('opentype');
    font-weight: 800; 
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'PlusJakartaSans-Regular'; 
    src: url('fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 500; 
    font-style: normal;
    font-display: swap; 
}
@font-face {
    font-family: 'PlusJakartaSans-Bold';
    src: url('fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 700; 
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'PlusJakartaSans-LightItalic'; 
    src: url('fonts/PlusJakartaSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap; 
}

/* --- GLOBAL VARS --- */
:root {
    --signature: #FF6600; 
    --signature-dark: #CC5200; 
    --black: #1a1a1a;
    --white: #ffffff;
    --light-orange: rgba(255, 102, 0, 0.1);
    --bg-light: #ffffff;
    --bg-dark: #121212;
    
    /* Typography */
    --font-main: 'PlusJakartaSans-Regular', sans-serif;
    --font-main-bold: 'PlusJakartaSans-Bold', sans-serif;
    --font-heading: 'ClashDisplay-Bold', sans-serif;
    --font-italic: 'PlusJakartaSans-LightItalic', sans-serif;
    
    --hard-shadow: 6px 6px 0px 0px var(--black);
}

body {
    font-family: var(--font-main);
    background: var(--bg-light);
    color: var(--black);
    margin: 0;
    padding: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit; 
    text-decoration: underline; 
    text-decoration-thickness: 2px; 
    text-underline-offset: 3px; 
    transition: color 0.1s ease, text-decoration-color 0.1s ease;
}

a:hover {
    color: var(--signature);
    text-decoration-color: var(--signature); 
}

/* --- HEADER --- */
.neo-header {
    padding: 10px 0;
    position: relative;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 5px 30px; 
    max-width: 100%;
    margin: 0; 
    margin-bottom: 15px;
    margin-top: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.neo-search-form {
    border: 1px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    display: flex;
    height: 40px; 
}

.search-field {
    border: 3px solid var(--black);
    border-right: none; 
    padding: 0 15px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    outline: none;
    width: 200px;
    transition: background 0.2s ease;
}

.search-field:focus {
    background: var(--bg-light);
}

.search-submit {
    background: var(--signature);
    color: var(--white);
    border: 3px solid var(--black);
    padding: 0 15px;
    font-family: var(--font-main-bold);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.1s ease;
}

.search-submit:hover {
    background: var(--black);
    color: var(--white);
}

.site-logo {
    display: flex;
    align-items: left;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
    transition: transform 0.1s ease;
}

.custom-logo-link img {
    max-height: 40px; 
    width: auto;
}

.menu-toggle {
    height: 40px; 
    border: 4px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    background: var(--signature);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.1s ease;
}

.menu-toggle:hover {
    background: var(--black);
}


.toggle-text {
    font-weight: 900;
    font-family: var(--font-main-bold);
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--white);
}

.toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.toggle-icon  span {
  width: 100%;
  height: 4px;
  background-color: var(--white); 
  border-radius: 60px;
  transition: all 0.3s linear;
}

.bar {
    width: 100%;
    height: 3px;
    background: currentColor;
    display: block;
}

.menu-toggle.is-active .bar-1 {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-active .bar-2 {
    opacity: 0;
}
.menu-toggle.is-active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
}

.neo-nav {
    display: none;
    width: 100%;
    flex-basis: 100%;
    background: var(--white);
    padding: 20px 0;
    margin-top: 20px;
}

.neo-nav.is-active {
    display: block;
}

.nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    max-width: 80%;
    margin: 0 auto;
}

.nav-list li a {
    display: block;
    text-align: center;
    padding: 10px;
    font-family: var(--font-main-bold);
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--black);
}

.header-banner {
    border-top: 5px solid var(--black);
    display: flex;
    justify-content: center; 
    align-items: center; 
    padding: 20px 5%;
    background: var(--signature); 
    color: var(--white);
    font-family: var(--font-heading);
}

.banner-text {
    text-align: left;
    max-width: 700px; 
}

.banner-title {
    margin: 0;
        text-transform: uppercase; 

    font-size: 1.6rem;
    color: var(--white); 
    line-height: 1.2;
    margin-right: 50px;
}

.banner-button {
    flex-shrink: 0; 
    white-space: nowrap; 
    border: 3px solid var(--black);
    background: var(--white);
    color: var(--black);
    padding: 20px 30px;
    font-size: 1rem;
    font-family: var(--font-main-bold);
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.1s ease;
    color: var(--signature);
    box-shadow: 4px 4px 0px var(--black);
}

.banner-button:hover {
    transform: translate(-2px, -2px);
    background: var(--black);
    color: var(--white);
}

.banner-button:active {
    transform: translate(2px, 2px);
}

@media (max-width: 768px) {
    .header-banner {
        flex-direction: column; 
        gap: 15px; 
        text-align: center;
    }
    
    .banner-title {
        text-align: center;
        margin: 0;
        font-size: 1.6rem; 
    }
    
    .header-inner {
        flex-wrap: nowrap !important; 
        padding: 0 20px;
    }

    .neo-search-form {
        display: none !important; 
    }

    .header-actions {
        width: auto !important; 
    }

    .custom-logo-link img {
        max-height: 35px !important;
    }
    
    .logo-text {
        font-size: 1.5rem !important; 
    }

    .menu-toggle {
        padding: 6px 12px;
        gap: 8px;
    }
    
    .toggle-text {
        font-size: 0.85rem;
    }
}

/* --- QUACKY --- */

.duck-asset {
        width: 80px; 
    }

.duck-bubble.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.is-landing #the-duck {
    animation: approachFromBackground 4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.is-subpage #the-duck {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

@keyframes approachFromBackground {
    0% {
        transform: scale(0) translateZ(-1000px);
        opacity: 0;
        filter: blur(15px);
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: scale(1) translateZ(0);
        filter: blur(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #duck-stage {
        bottom: 15px;
        right: 15px;
    }
    
    #the-duck {
        width: 60px;
    }

    .duck-bubble {
        padding: 10px;
        min-width: 120px;
        font-size: 0.7rem;
        bottom: 100%; 
    }
}

#duck-stage {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.duck-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
    transform: scale(0);
    opacity: 0;

    animation: approachAndStay 3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes approachAndStay {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1); 
        opacity: 1;
    }
}

.duck-bubble {
    position: absolute;
    bottom: 125%; 
    right: 0;
    z-index: 10001;
    font-size: 0.6rem;
    background: #fff;
    border: 3px solid #000; 
    box-shadow: 6px 6px 0px #000; 
    display: none; 
    flex-direction: column; 
    align-items: center; 
    gap: 10px; 
    width: 100px; 
    padding: 15px 10px; 
    text-align: center;
}

.duck-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px; 
    right: 30px; 
    border-width: 15px 15px 0 15px; 
    border-style: solid;
    border-color: #000 transparent transparent transparent; 
}

.duck-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px; 
    right: 32px;
    border-width: 12px 12px 0 12px;
    border-style: solid;
    border-color: #fff transparent transparent transparent; 
    z-index: 1; 
}

.bubble-text {
    margin: 0;
    padding: 0;
}

.bubble-text p {
    font-family: var(--font-main); 
    margin: 0;
}

.bubble-text a {
    color: var(--signature); 
    font-family: var(--font-main-bold); 
    font-weight: 800;
    text-decoration: none; 
    text-transform: uppercase;
    display: block; 
    border: 2px solid #000; 
    background: #fff;
    padding: 5px;
    margin-top: 5px;
    box-shadow: 3px 3px 0px #000;
}

.bubble-text a:hover {
    background: var(--signature);
    color: #fff;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000;
}

.bubble-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; 
}

.bubble-close:hover {
    background: var(--signature);
}

@media (max-width: 480px) {
    .duck-bubble {
        width: 130px; 
        right: -10px; 
    }
}

/* --- LANDING PAGE --- */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 60vh; 
    background: #000;
    overflow: visible; 
    margin-bottom: 50px; 
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner-box {
    position: absolute;
    bottom: -50px;
    left: 5%;
    z-index: 10;
}

.highlight-inline {
    background: var(--signature); 
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.8; 
    padding: 8px 15px; 
    display: inline; 
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone; 
    box-shadow: 10px 0 0 var(--signature), -10px 0 0 var(--signature); 
    margin-left: 10px;
}

.hero-title {
    margin: 0;
    background: transparent !important; 
}

@media (max-width: 768px) {
    .highlight-inline{
        font-size: 1.8rem;
        padding: 6px 10px;
        line-height: 1.6 !important; 
        box-shadow: 6px 0 0 var(--signature), -6px 0 0 var(--signature); 
    }
    .hero-video-container {
        height: 40vh; 
    }
}

.neo-about-section {
    padding: 80px 20px;
    background: var(--bg-light); 
    border-bottom: 4px solid var(--black);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px; 
    object-fit: cover; 
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--signature);
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: #eee;
    border: 4px dashed var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main-bold);
}

.about-content {
    flex: 1; 
    background: #fff;
    padding: 40px;
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-body {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.neo-btn {
    display: inline-block;
    background: var(--signature);
    color: var(--white);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.neo-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--black);
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column; 
        gap: 30px;
    }
    
    .about-img {
        height: 300px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-heading {
        font-size: 2rem;
    }
}

.neo-events-section {
    padding: 60px 20px;
    background: var(--signature); 
    border-bottom: 4px solid var(--black);
    overflow: hidden; 
}

.events-header {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    text-shadow: 4px 4px 0px var(--black); 
}

.view-all-link {
    font-family: var(--font-main-bold);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--black);
    padding-bottom: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.view-all-link:hover { color: var(--black); }

.events-carousel-track {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px; 
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; 
}

.events-carousel-track::-webkit-scrollbar {
    height: 12px;
}
.events-carousel-track::-webkit-scrollbar-track {
    background: var(--white);
    border: 3px solid var(--black);
}
.events-carousel-track::-webkit-scrollbar-thumb {
    background: var(--black);
    border: 2px solid var(--white);
}

.event-card {
    flex: 0 0 320px; 
    scroll-snap-align: start; 
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-thumb {
    position: relative;
    height: 200px;
    border-bottom: 4px solid var(--black);
    background: #eee;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #ccc;
}

.event-date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--signature);
    color: var(--white);
    border: 3px solid var(--black);
    padding: 5px 10px;
    text-align: center;
    box-shadow: 4px 4px 0px var(--black);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.date-month {
    font-family: var(--font-main-bold);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.event-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-btn {
    display: block;
    text-align: center;
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    padding: 10px;
    font-family: var(--font-main-bold);
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0px var(--signature);
    transition: all 0.1s;
}

.event-btn:hover {
    background: var(--black);
    color: var(--white);
    box-shadow: 4px 4px 0px var(--black);
    transform: translate(-2px, -2px);
}

@media (max-width: 768px) {
    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-title { font-size: 2.5rem; }
    
    .event-card {
        flex: 0 0 280px; 
    }
}

.neo-news-section {
    padding: 80px 20px;
    background: var(--bg-light); 
    border-bottom: 4px solid var(--black);
}

.news-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: 6px 6px 0px var(--black);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.news-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--signature); 
}

.news-thumb {
    height: 220px;
    border-bottom: 4px solid var(--black);
    background: var(--signature);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--black);
    opacity: 0.2;
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-main-bold);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.news-date { color: var(--black); }
.news-category { color: var(--signature); font-weight: 900; }

.news-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.news-title a {
    text-decoration: none;
    color: var(--black);
    transition: color 0.1s;
}

.news-title a:hover {
    color: var(--signature);
}

.news-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.news-btn {
    margin-top: auto; 
    display: block;
    text-align: center;
    background: var(--black);
    color: var(--white);
    padding: 12px;
    font-family: var(--font-main-bold);
    text-transform: uppercase;
    text-decoration: none;
    border: 3px solid var(--black);
    transition: all 0.1s ease;
}

.news-btn:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 4px 4px 0px var(--black);
    transform: translate(-2px, -2px);
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.wins-section {
    background-color: #F8F5F2; 
    padding: 80px 20px;
    text-align: center;
}


.wins-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.win-card-brutal {
    background: #FFFFFF;
    border: 4px solid #000000;
    padding: 40px 25px;
    text-align: left;
    transition: all 0.1s ease;
    box-shadow: 10px 10px 0px #000000;
}

.win-card-brutal:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px #000000;
}

.win-icon-wrapper {
    background-color: var(--signature); 
    border: 3px solid var(--black);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px #000000;
}

.win-card-brutal h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}

.win-card-brutal p {
    color: #000000;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .wins-grid { flex-direction: column; align-items: center; }
    .section-title { transform: rotate(0deg); font-size: 2rem; }
}

/* --- FOOTER --- */
.svolta-dark-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 5%;
    border-top: 5px solid var(--black);
}

.footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 18, 18, 0.85); 
    z-index: 1;
}

.footer-inner-grid {
    position: relative;
    z-index: 2; 
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr; 
    gap: 40px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 15px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex; 
    align-items: flex-start;
    gap: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--signature);
}

.icon-orange {
    color: var(--signature);
    font-size: 1.2rem;
    height: auto;
    width: auto;
}

.footer-huge-logo {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-input {
    background: transparent;
    border: 2px solid #555;
    padding: 12px;
    color: var(--white);
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
}

.footer-input:focus {
    border-color: var(--signature);
    background: rgba(255, 255, 255, 0.05);
}

.footer-submit {
    background: transparent;
    color: var(--signature);
    border: 2px solid var(--signature);
    padding: 12px;
    font-family: var(--font-main-bold);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.footer-submit:hover {
    background: var(--signature);
    color: var(--white);
}

.social-heading {
    margin-top: 30px;
}

.footer-social-grid {
    display: flex;
    gap: 10px;
}

.social-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--signature);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.1s;
}

.social-box:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--signature);
}

.footer-copyright-bar {
    background: var(--signature); 
    color: var(--white);
    text-align: center;
    padding: 15px 20px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 700;
    border-top: 2px solid var(--black);
}

.footer-copyright-bar p { margin: 0; }

@media (max-width: 900px) {
    .footer-inner-grid {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 600px) {
    .footer-inner-grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .footer-col li, .footer-links a {
        justify-content: center;
    }
    
    .footer-social-grid {
        justify-content: center;
    }
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 15px;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.footer-nav-list a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-list a:hover {
    color: var(--signature);
}

.footer-nav-list a::before {
    content: "\f345"; 
    font-family: "dashicons";
    color: var(--signature);
    font-size: 1.2rem;
    display: inline-block;
}

/* --- SEARCH PAGE --- */
.neo-search-page {
    background: var(--bg-light);
    padding-bottom: 80px;
}

.search-hero {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid var(--black);
}

.search-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
}

.search-highlight {
    color: var(--signature);
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.search-results-grid {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-card-content {
    margin-left: 20px;;
}

.search-card {
    background: var(--white);
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0px var(--black);
    position: relative;
    padding: 25px 25px 25px 35px; 
    transition: transform 0.2s ease;
    margin-bottom: 30px;
}

.search-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px var(--signature);
}

.search-badge {
    position: absolute;
    top: -3px;
    left: -3px;
    bottom: -3px;
    width: 35px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main-bold);
    text-transform: uppercase;
    font-size: 0.9rem;
    border-right: 3px solid var(--black);
    color: var(--white);
}

.evento-badge { background: var(--signature); }
.post-badge { background: var(--black); }
.page-badge { background: #666; }

.search-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 10px 0;
}

.search-card-title a { text-decoration: none; }
.search-card-title a:hover { color: var(--signature); }

.search-card-excerpt {
    font-family: var(--font-main);
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
}

.search-card-btn {
    font-family: var(--font-main-bold);
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
}

.no-results-box {
    text-align: center;
    background: var(--white);
    padding: 50px 20px;
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
}

.search-users-results {
    width: 100%;
}

.search-users-results .organ-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start; 
    margin-top: 20px;
}

.search-users-results .rep-card {
    flex: 0 0 220px; 
    text-decoration: none;
    display: block;
}

.search-users-results .rep-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 3px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    overflow: hidden;
    margin-bottom: 10px;
    background: #eee;
}

.search-users-results .rep-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-users-results .rep-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .search-users-results .organ-cards-grid {
        justify-content: center;
    }
}

.search-section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--black);
    margin: 40px 0 20px 0;
    padding-left: 10px;
    border-left: 8px solid var(--signature);
    line-height: 1;
}

.search-users-results .organ-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .search-section-title {
        font-size: 1.8rem;
        text-align: left;
    }
}