/* CARAVEL CUP - Chess Tournament Website Styles */

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

:root {
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --accent: #af5522;
    --accent-dark: #8a421a;
    --bg: #0f0f0f;
    --muted: #f5f5f5;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* Glass Effect Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Evita che layer decorativi blocchino i click */
.diagonal-divider,
.hero-bg,
.chess-pattern,
.chess-pieces { 
    pointer-events: none !important; 
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
}

.nav-logo {
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover h2 {
    color: var(--white);
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.lang-toggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto !important;
    z-index: 200;
    position: relative;
}

.lang-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    pointer-events: auto !important;
    z-index: 200;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, #1a1a1a 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.chess-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 25%, var(--accent) 25%),
        linear-gradient(-45deg, transparent 25%, var(--accent) 25%),
        linear-gradient(45deg, var(--accent) 75%, transparent 75%),
        linear-gradient(-45deg, var(--accent) 75%, transparent 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.03;
}

.chess-pieces {
    position: absolute;
    width: 100%;
    height: 100%;
}

.piece {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.05;
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 6s ease-in-out infinite;
}

.piece.king {
    top: 20%;
    left: 10%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10L45 20H35L40 30H60L65 20H55L50 10ZM35 35V85H65V35H35Z' fill='%23af5522'/%3E%3C/svg%3E");
    animation-delay: 0s;
}

.piece.queen {
    top: 60%;
    right: 15%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 5L45 15L35 10L40 25L25 20L35 35H65L75 20L60 25L65 10L55 15L50 5ZM35 40V85H65V40H35Z' fill='%23af5522'/%3E%3C/svg%3E");
    animation-delay: 2s;
}

.piece.rook {
    bottom: 20%;
    left: 80%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M30 10H70V25H60V35H70V85H30V35H40V25H30V10ZM35 15V20H45V30H55V20H65V15H60V25H55V30H45V25H40V15H35Z' fill='%23af5522'/%3E%3C/svg%3E");
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    padding: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: var(--space-md);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .letter {
    display: inline-block;
    animation: letterReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) both;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.hero-title .space {
    width: 2rem;
    display: inline-block;
}

@keyframes letterReveal {
    0% {
        transform: translateY(100px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateX(0deg);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.dates-highlight,
.venue-highlight {
    color: var(--accent);
    font-weight: 700;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(175, 85, 34, 0.3);
}

.cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(175, 85, 34, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--bg);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Key Info Section */
.key-info {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.info-card {
    padding: var(--space-md);
    text-align: center;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.info-card a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Section Styles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.diagonal-divider {
    height: 2px;
    background: linear-gradient(45deg, transparent, var(--accent), transparent);
    margin-bottom: var(--space-xl);
}

/* Why Section */
.why-section {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.why-item {
    padding: var(--space-md);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.why-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--accent);
}

.why-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Prize Section */
.prize-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg) 100%);
}

.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
}

.prize-category {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition);
}

.prize-category:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.prize-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.prize-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.prize-item.first .amount { color: #ffd700; }
.prize-item.second .amount { color: #c0c0c0; }
.prize-item.third .amount { color: #cd7f32; }

.position {
    font-weight: 700;
    font-size: 1.2rem;
}

.amount {
    font-weight: 800;
    font-size: 1.5rem;
}

.prize-highlight {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Preview Section */
.preview-section {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

.preview-content {
    text-align: center;
}

.pricing-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-md);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.price-label {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.standard-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.reduced-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.reduced-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reduced-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

/* Page Header */
.page-header {
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, #1a1a1a 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--chess-pattern);
    opacity: 0.02;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Schedule Section */
.schedule-section {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

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

.day-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.day-header {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto !important;
}

.day-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.day-date {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    margin-right: var(--space-md);
    min-width: 80px;
}

.day-info {
    flex-grow: 1;
}

.month {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 1.2rem;
}

.weekday {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-toggle::after {
    content: '▼';
    color: var(--accent);
    transition: var(--transition);
}

.schedule-accordion-header.active .schedule-toggle::after {
    transform: rotate(180deg);
}

.rounds-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.rounds-list.active {
    max-height: 300px !important;
}

/* Force visibility for debugging */
.schedule-accordion-content.active {
    max-height: 300px !important;
    padding-top: 0;
}
.round-item {
    display: grid;
    grid-template-columns: 44px auto 1fr; /* numero | orario | (spazio / badge) */
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--glass-border);
}

.round-number {
    background: var(--accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.round-time { 
    font-weight: 600; 
    font-size: 1.1rem; 
    color: var(--white); 
}

.round-item.final {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    margin: var(--space-sm);
    border-radius: 12px;
    border: none;
}

.final-badge {
    margin-left: auto;
    background: var(--white);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    justify-self: end;
}

/* Pricing Section */
.pricing-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.early {
    border-color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.pricing-card.regular {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(175, 85, 34, 0.1);
}

.pricing-card.late {
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.pricing-header {
    padding: var(--space-md);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.pricing-badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.early .pricing-badge {
    background: #4ade80;
    color: var(--black);
}

.pricing-card.late .pricing-badge {
    background: #ef4444;
}

.pricing-content {
    padding: var(--space-md);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.special {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    margin: var(--space-sm) calc(-1 * var(--space-md));
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    border: none;
}

.price {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
}

.price-row.special .price {
    color: var(--white);
}

/* Payment Section */
.payment-section {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

.payment-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--space-lg);
}

.payment-warning {
    background: #ef4444;
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    text-align: center;
    font-weight: 600;
}

.bank-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.bank-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: var(--space-sm);
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--glass-border);
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-value {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 8px;
    font-weight: 600;
}

.copy-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    pointer-events: auto !important;
}

.copy-btn:hover {
    background: var(--accent-dark);
}

/* feedback visivo per copy */
.copy-btn.copied { 
    filter: brightness(1.1); 
}

.bank-value[readonly] {
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.payment-instructions {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    line-height: 1.6;
}

.payment-instructions a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.payment-instructions a:hover {
    text-decoration: underline;
}

/* Rules Section */
.rules-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg) 100%);
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
}

.rules-download {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.download-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.download-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--space-md);
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    pointer-events: auto !important;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.faq-question.active::after {
    content: '−';
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-md);
}

.faq-answer.active {
    max-height: 500px !important;
    padding-top: 0;
    padding-bottom: var(--space-md);
    opacity: 1;
}

.faq-answer p {
    padding: var(--space-sm) 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Section */
.contact-main-section {
    padding: var(--space-xl) 0;
    background: var(--bg);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-card.primary {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(175, 85, 34, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm) auto;
    background: var(--accent);
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--white);
}

.location-link {
    display: block;
    line-height: 1.6;
}

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

.contact-description {
    margin-top: var(--space-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Hotel Info Section */
.hotel-info-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--bg) 100%);
}

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

.hotel-feature {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.hotel-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--accent);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hotel-contact-info {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--space-md);
    height: fit-content;
}

.hotel-contact-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.hotel-contact-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--glass-border);
}

.hotel-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hotel-contact-item .label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 80px;
}

.hotel-contact-item .value {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: right;
}

.hotel-contact-item .value:hover {
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--black);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--glass-border);
}

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

.footer-left h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: var(--space-xs);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-right a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-right a:hover {
    color: var(--white);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    background: var(--accent);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.toast.show {
    transform: translateX(0);
}

/* Animation utilities */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(0) !important;
}

[data-aos="fade-right"] {
    transform: translateX(0) !important;
}

[data-aos="slide-up"] {
    transform: translateY(0) !important;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Navbar: cliccabile SEMPRE su desktop; su mobile chiusa non cliccabile */
#navMenu { pointer-events: auto !important; }
@media (max-width: 900px) {
  #navMenu { pointer-events: none !important; }
  #navMenu.open, #navMenu.active { pointer-events: auto !important; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hotel-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .bank-row {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .pricing-grid,
    .prize-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 2rem;
        --space-lg: 1.5rem;
    }
    
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-md);
        border-top: 1px solid var(--glass-border);
        z-index: 9999;
        pointer-events: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-title .space {
        width: 1rem;
    }
    
    .info-grid,
    .why-grid,
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .pricing-preview {
        grid-template-columns: 1fr;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .day-date {
        margin-right: 0;
        min-width: auto;
    }
    
    .hotel-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-xs);
    }
    
    .hero-content {
        padding: var(--space-sm);
    }
    
    .info-card,
    .why-item,
    .contact-card,
    .pricing-card,
    .prize-category {
        padding: var(--space-sm);
    }
    
    .payment-card {
        padding: var(--space-sm);
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-scroll,
    .toast {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-title {
        color: black;
    }
}