/* ==========================================================================
   Selena Italy - Main Stylesheet
   Mobile-first responsive design
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-hover);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--color-neutral-600);
}

ul, ol {
    padding-left: var(--space-lg);
}

/* Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: 800px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: var(--space-sm);
}

.btn--accent {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn--accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn--outline-light:hover {
    background: #fff;
    color: var(--color-accent);
    border-color: #fff;
}

.btn--sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn--lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-neutral-200);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header-brand a,
.site-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--color-neutral-500);
    letter-spacing: 0.5px;
}

.header-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-dark);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a,
.nav-list li.current_page_item a {
    color: var(--color-accent);
}

.nav-list li a:hover::after,
.nav-list li.current-menu-item a::after,
.nav-list li.current_page_item a::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 992px) {
    .nav-toggle { display: none; }
    .header-nav { display: block; }
}

/* Mobile Navigation */
.header-nav.mobile-open {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    padding: var(--space-2xl) var(--space-md);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

.header-nav.mobile-open .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.header-nav.mobile-open .nav-list li a {
    font-size: 1.25rem;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-rosa) 0%, var(--color-lavender) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201, 123, 139, 0.1) 0%, transparent 60%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-4xl) 0;
    max-width: 750px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-dark);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.hero__description {
    font-size: 1.0625rem;
    color: var(--color-neutral-600);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero (smaller) */
.page-hero {
    padding: var(--space-4xl) 0 var(--space-2xl);
    margin-top: var(--header-height);
    background: linear-gradient(135deg, var(--color-rosa) 0%, var(--color-lavender) 100%);
    text-align: center;
}

.page-hero--sm {
    padding: var(--space-3xl) 0 var(--space-xl);
}

.page-hero__title {
    margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
    color: var(--color-neutral-600);
    font-size: 1.125rem;
}

.page-hero__category {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.page-hero__meta {
    margin-top: var(--space-sm);
    color: var(--color-neutral-500);
    font-size: 0.9375rem;
}

.meta-sep {
    margin: 0 var(--space-sm);
}

/* Sections
   ========================================================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section--rosa {
    background-color: var(--color-rosa);
}

.section--lavender {
    background-color: var(--color-lavender);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--color-neutral-500);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-4xl) 0;
    }
}

/* Macro Areas Grid
   ========================================================================== */
.macro-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.macro-area-card {
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.macro-area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.macro-area-card__icon {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.macro-area-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.macro-area-card__desc {
    font-size: 0.9375rem;
    color: var(--color-neutral-500);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .macro-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .macro-areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Events Grid
   ========================================================================== */
.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.filter-btn {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-neutral-300);
    background: #fff;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    color: var(--color-neutral-600);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.events-grid.columns-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .events-grid.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .events-grid.columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.event-card--cancelled {
    opacity: 0.7;
}

.event-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.event-card__badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-card__badge--cancelled {
    background-color: var(--color-error);
    color: #fff;
}

.event-card__badge--full {
    background-color: var(--color-warning);
    color: var(--color-dark);
}

.event-card__content {
    padding: var(--space-lg);
}

.event-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.event-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.event-card__title a {
    color: var(--color-dark);
}

.event-card__title a:hover {
    color: var(--color-accent);
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.event-card__meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--color-neutral-500);
}

.event-card__seats {
    font-size: 0.8125rem;
    color: var(--color-success);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.event-card__excerpt {
    font-size: 0.9375rem;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-md);
}

/* Membership Cards
   ========================================================================== */
.membership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.membership-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.membership-card--highlighted {
    border-color: var(--color-accent);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.membership-card--highlighted:hover {
    transform: scale(1.02) translateY(-4px);
}

.membership-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: #fff;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membership-card__name {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.membership-card__price {
    margin-bottom: var(--space-lg);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-period {
    font-size: 0.9375rem;
    color: var(--color-neutral-500);
}

.membership-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.membership-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    color: var(--color-neutral-600);
    border-bottom: 1px solid var(--color-neutral-200);
}

.membership-card__features li:last-child {
    border-bottom: none;
}

.membership-card__features li svg {
    color: var(--color-success);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .membership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials Carousel
   ========================================================================== */
.selena-testimonianze-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-xl);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 0 var(--space-sm);
}

.testimonial-card__quote {
    position: relative;
    margin-bottom: var(--space-lg);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-neutral-600);
    line-height: 1.7;
}

.testimonial-card__quote svg {
    position: absolute;
    top: -10px;
    left: -5px;
    color: var(--color-accent);
}

.testimonial-card__quote p {
    position: relative;
    padding-left: var(--space-xl);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.testimonial-card__info span {
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    background: #fff;
    border: 1px solid var(--color-neutral-300);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-dark);
}

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

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-neutral-300);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--color-accent);
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - var(--space-md));
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        min-width: calc(33.333% - var(--space-md));
    }
}

/* Newsletter Section
   ========================================================================== */
.newsletter-box {
    background: linear-gradient(135deg, var(--color-rosa), var(--color-lavender));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.newsletter-box__content h2 {
    margin-bottom: var(--space-sm);
}

.newsletter-box__content p {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .newsletter-box {
        grid-template-columns: 1fr 1fr;
        padding: var(--space-3xl);
    }
}

/* Forms
   ========================================================================== */
.selena-newsletter-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-neutral-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--color-dark);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.newsletter-privacy,
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
    cursor: pointer;
}

.newsletter-privacy input,
.checkbox-label input {
    width: auto;
    margin-top: 2px;
}

.newsletter-message,
.form-message {
    font-size: 0.875rem;
    min-height: 20px;
}

.newsletter-message.success,
.form-message.success {
    color: var(--color-success);
}

.newsletter-message.error,
.form-message.error {
    color: var(--color-error);
}

/* Blog Layout
   ========================================================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
    }
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card (Blog post) */
.card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__content {
    padding: var(--space-lg);
}

.card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-sm);
}

.card__cat {
    background-color: var(--color-rosa);
    padding: 2px var(--space-sm);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    font-weight: 500;
}

.card__type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.card__title a {
    color: var(--color-dark);
}

.card__title a:hover {
    color: var(--color-accent);
}

.card__excerpt {
    font-size: 0.9375rem;
    color: var(--color-neutral-500);
    margin-bottom: var(--space-md);
}

/* Single Event Layout
   ========================================================================== */
.single-evento-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 992px) {
    .single-evento-layout {
        grid-template-columns: 1fr 350px;
    }
}

.single-evento__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.single-evento__body {
    line-height: 1.7;
}

.single-evento__body p {
    margin-bottom: var(--space-lg);
}

.evento-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.evento-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.evento-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
}

.evento-info-list li {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-neutral-200);
    align-items: flex-start;
}

.evento-info-list li:last-child {
    border-bottom: none;
}

.evento-info-list li svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.evento-info-list li div strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-neutral-500);
    margin-bottom: 2px;
}

.evento-info-list li div span {
    font-size: 0.9375rem;
    color: var(--color-dark);
}

.evento-info-list li div small {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
}

.evento-full-msg {
    text-align: center;
    color: var(--color-warning);
    font-weight: 600;
    padding: var(--space-md);
    background: rgba(232, 184, 75, 0.1);
    border-radius: var(--radius-md);
}

.evento-newsletter-card {
    background: var(--color-rosa);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.evento-newsletter-card h4 {
    margin-bottom: var(--space-sm);
}

.evento-newsletter-card p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

/* Single Post
   ========================================================================== */
.single-post__featured {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.single-post__body {
    line-height: 1.8;
    font-size: 1.0625rem;
}

.single-post__body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.single-post__body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.single-post__body p {
    margin-bottom: var(--space-lg);
}

.single-post__body ul,
.single-post__body ol {
    margin-bottom: var(--space-lg);
}

.single-post__tags {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-neutral-200);
    font-size: 0.875rem;
}

.tags-label {
    font-weight: 600;
}

/* Chi Siamo Page
   ========================================================================== */
.content-block {
    max-width: 800px;
    margin-bottom: var(--space-2xl);
}

.content-block h2 {
    margin-bottom: var(--space-md);
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.mission-card {
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.mission-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.value-item {
    padding: var(--space-xl);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    display: block;
    margin-bottom: var(--space-sm);
}

.value-item h3 {
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    background: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.team-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
    background-color: var(--color-neutral-200);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.team-card__role {
    font-size: 0.875rem;
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Contatti Page
   ========================================================================== */
.contatti-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

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

.contatti-form h2,
.contatti-info h2 {
    margin-bottom: var(--space-xl);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.info-card {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.info-card svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-neutral-500);
    margin-bottom: 2px;
}

.info-card p {
    margin-bottom: 0;
    color: var(--color-dark);
}

.contatti-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contatti-map iframe {
    border-radius: var(--radius-lg);
}

/* Sidebar
   ========================================================================== */
.sidebar .widget {
    background: #fff;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.sidebar .widget-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-accent-light);
}

.widget-eventi-list {
    list-style: none;
    padding: 0;
}

.widget-evento-item {
    border-bottom: 1px solid var(--color-neutral-200);
    padding: var(--space-sm) 0;
}

.widget-evento-item:last-child {
    border-bottom: none;
}

.widget-evento-item a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.widget-evento-item a:hover {
    color: var(--color-accent);
}

.widget-evento-data {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
}

.widget-evento-title {
    font-weight: 500;
    font-size: 0.9375rem;
}

.widget-evento-location {
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
}

/* Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-neutral-300);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-neutral-400);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    color: var(--color-neutral-400);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

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

.footer-menu li {
    margin-bottom: var(--space-sm);
}

.footer-menu li a {
    color: var(--color-neutral-400);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--color-accent);
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-neutral-400);
}

.footer-contacts li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer-contacts li a {
    color: var(--color-neutral-400);
}

.footer-contacts li a:hover {
    color: var(--color-accent);
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-newsletter input::placeholder {
    color: var(--color-neutral-500);
}

.footer-newsletter .newsletter-privacy span {
    color: var(--color-neutral-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-md);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Pagination
   ========================================================================== */
.pagination {
    margin-top: var(--space-2xl);
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-dark);
    background: #fff;
    border: 1px solid var(--color-neutral-300);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Post Navigation */
.post-navigation {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-neutral-200);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
}

.post-navigation a {
    font-size: 0.9375rem;
}

/* Legal Content
   ========================================================================== */
.legal-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    font-size: 1.375rem;
}

.legal-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.legal-table th,
.legal-table td {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-neutral-300);
    text-align: left;
    font-size: 0.875rem;
}

.legal-table th {
    background-color: var(--color-neutral-100);
    font-weight: 600;
}

/* Membership Newsletter Form */
.membership-newsletter-form {
    margin-top: var(--space-3xl);
    background: var(--color-rosa);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.membership-newsletter-form h3 {
    margin-bottom: var(--space-sm);
}

.membership-newsletter-form p {
    margin-bottom: var(--space-lg);
}

/* 404 Page */
.error-404__title {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--color-accent-light);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.section--centered {
    min-height: 50vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

/* No Content */
.no-content {
    padding: var(--space-3xl) 0;
}

/* Utility
   ========================================================================== */
.text-center { text-align: center; }

/* Badge */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge--cancelled {
    background-color: var(--color-error);
    color: #fff;
}

/* Selena Events Section (shortcode) */
.selena-events-section {
    width: 100%;
}

/* Selena Newsletter Section (shortcode) */
.selena-newsletter-section {
    background: var(--color-rosa);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.selena-newsletter-section h3 {
    margin-bottom: var(--space-sm);
}

.selena-newsletter-section p {
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Entry Content (WordPress default styles) */
.entry-content img {
    border-radius: var(--radius-md);
}

.entry-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--color-neutral-600);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
