/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --valpolicella-verde: #2d5016;
    --valpolicella-bordeaux: #8B0000;
    --valpolicella-oro: #D4AF37;
    --valpolicella-beige: #F5E6D3;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --gray-light: #f4f4f4;
    --gray-medium: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease 0.5s, visibility 0.8s ease 0.5s;
}

.splash-screen.transform-to-hero {
    opacity: 0;
    visibility: hidden;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #1a3810 0%, 
        #2d5016 25%,
        #6b0000 75%,
        #4a0000 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    opacity: 1;
    transition: opacity 0.8s ease 0.5s;
}

.splash-screen.transform-to-hero .splash-background {
    opacity: 0;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-cristian {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    animation: cristianAppear 1s ease-out forwards 0.5s;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.6, 0, 0.4, 1);
}

.splash-cristian.explode {
    opacity: 0 !important;
    transform: scale(2.5) translateY(-150px);
}

.splash-cristian img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--valpolicella-oro);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@keyframes cristianAppear {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.splash-text {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.8s;
    animation-fill-mode: both;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.6, 0, 0.4, 1);
}

.splash-text h1.explode {
    opacity: 0 !important;
    transform: scale(2.5) translateY(-120px);
}

.splash-motto {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-light);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    animation: mottoAppear 1s ease-out 1.2s;
    animation-fill-mode: both;
    position: relative;
    z-index: 2;
    text-align: center;
	white-space: nowrap;
}

@keyframes mottoAppear {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.splash-motto.transforming {
    animation: none;
    position: fixed;
    z-index: 10001;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    overflow: visible;
}

.splash-date {
    font-size: 1rem;
    font-weight: 400;
    color: var(--valpolicella-oro);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 1.5s;
    animation-fill-mode: both;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.6, 0, 0.4, 1);
}

.splash-date.explode {
    opacity: 0 !important;
    transform: scale(2.5) translateY(150px);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.nav-brand .logo {
    height: 50px;
}

.nav-brand span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--valpolicella-bordeaux);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--valpolicella-bordeaux);
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--valpolicella-bordeaux);
    transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--valpolicella-bordeaux);
}

.nav-cta .btn-primary {
    padding: 10px 20px;
    background: var(--valpolicella-bordeaux);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta .btn-primary:hover {
    background: #A50000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--valpolicella-bordeaux);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #A50000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--valpolicella-oro);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #C5A028;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-download {
    display: inline-block;
    padding: 12px 25px;
    background: var(--valpolicella-verde);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-download:hover {
    background: #3d6b1f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-section .layer-back {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                      url('images/valpolicella-hills.jpg');
    transform: translateZ(-10px) scale(2);
}

.hero-section .layer-mid {
    background-image: url('images/vineyards-layer.png');
    transform: translateZ(-5px) scale(1.5);
    opacity: 0.6;
}

.hero-section .layer-front {
    background-image: url('images/foreground-vines.png');
    transform: translateZ(0);
    opacity: 0.4;
    cursor: pointer;
}

.cristian-busto {
    position: absolute;
    right: 1%;
    bottom: 0;
    z-index: 8;
    height: 80%;
    max-height: 80vh;
    pointer-events: none;
}

.cristian-busto img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
	pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
    line-height: 1.2;
    margin-left: auto;
    margin-right: auto;
	white-space: nowrap;
}

.hero-title.visible {
    opacity: 1;
    transform: scale(1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.countdown-container {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 20px 30px;
    min-width: 120px;
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--valpolicella-oro);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.scroll-indicator {
    margin-top: 40px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.scroll-indicator p {
    font-size: 1rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: var(--text-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 20px;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Objectives Section */
.objectives-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
}

.objectives-section .obj-layer-back {
    background-image: linear-gradient(rgba(45, 80, 22, 0.9), rgba(45, 80, 22, 0.9)), 
                      url('images/valpolicella-landscape.jpg');
}

.objectives-section .obj-layer-front {
    background-image: url('images/grapes-overlay.png');
    opacity: 0.1;
}

.objectives-overlay {
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-light);
}

.objective-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

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

.objective-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.objective-card.reverse .objective-image {
    order: 2;
}

.objective-card.reverse .objective-content {
    order: 1;
}

.objective-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.sanita-bg {
    background-image: url('images/hospital-placeholder.jpg');
}

.viabilita-bg {
    background-image: url('images/road-placeholder.jpg');
}

.dissesto-bg {
    background-image: url('images/landslide-placeholder.jpg');
}

.objective-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.objective-content h3 {
    font-size: 2rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 15px;
}

.objective-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.video-section .section-title {
    color: var(--text-dark);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-cta {
    text-align: center;
    margin-top: 30px;
}

.video-cta p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Materials Section */
.materials-section {
    padding: 100px 0;
    background: var(--text-light);
}

.materials-section .section-title {
    color: var(--text-dark);
}

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

.material-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.material-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.material-card h3 {
    font-size: 1.5rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 15px;
}

.material-card p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(139, 0, 0, 0.85), rgba(139, 0, 0, 0.85)), 
                      url('images/valpolicella-sunset.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    width: 100%;
}

.cta-overlay h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-overlay p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--valpolicella-oro);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--valpolicella-oro);
}

.footer-col a {
    color: var(--valpolicella-oro);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--valpolicella-oro);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* chi è chris */
    .cs-mobile {
        display: none;
    }

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 70%;
    }

    .cristian-busto {
        right: 3%;
        height: 70%;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-card,
    .objective-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .objective-card.reverse .objective-image,
    .objective-card.reverse .objective-content {
        order: initial;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

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

    .nav-menu a {
        display: block;
        padding: 10px 0;
        font-size: 1.2rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 20px;
    }

    .nav-cta .btn-primary {
        display: block;
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .splash-motto {
        font-size: 2rem;
        letter-spacing: 3px;
    }
	
    .cs-mobile {
        display: block;
		white-space: nowrap;
    }
	
    .cs-desktop {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 20px;
    }

    .cristian-busto {
        right: 0;
        height: 60%;
        max-height: 50vh;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px 20px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .cta-overlay h2 {
        font-size: 2rem;
    }

    .cta-overlay p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .splash-motto {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

	.scroll-indicator {
		margin-bottom: 130px;
	}

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
	
	.hero-title.visible {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cristian-busto {
        right: -5%;
        height: 50%;
        max-height: 40vh;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
	
	.countdown-container {
		padding-bottom: 350px;
	}
	
	.cristian-busto {
		right: -5%;
		height: 70%;
		max-height: 80vh;
	}
	
	.hero-subtitle {
		margin-bottom: 20px;
	}
	
	.intro-image img {
		display: none;
	}
	
	.intro-section {
		padding: 0px 0;
	}
	
	.intro-text {
		padding-bottom: 50px;
	}
}

@media (max-width: 400px) {
	
	.countdown-container {
		padding-bottom: 300px;
	}
	
	.countdown-value {
		font-size: 1.2rem;
	}
	
	.countdown-item {
		min-width: 50px;
		padding: 5px 10px;
	}
	
	.cristian-busto {
		right: -3%;
		height: 70%;
		max-height: 80vh;
	}
	
	.hero-subtitle {
		margin-bottom: 20px;
	}
}

@media (max-height: 700px) {

	.countdown-container {
		padding-bottom: 150px;
	}

	.countdown-value {
		font-size: 1.2rem;
	}
	
	.countdown-item {
		min-width: 50px;
		padding: 5px 10px;
	}
}

@media (max-height: 750px) {
	
	.countdown-container {
		padding-bottom: 280px;
	}
	
	.countdown-value {
		font-size: 1.2rem;
	}
	
	.countdown-item {
		min-width: 50px;
		padding: 5px 10px;
	}
	
	.hero-title {
		font-size: 1.4rem;
		letter-spacing: 2px;
	}
	
	.hero-subtitle {
		margin-bottom: 20px;
	}
	
	.scroll-indicator {
		margin-top: 0px;
		margin-bottom: 50px;
	}
	
	.cristian-busto {
		right: 3%;
	}
}

@media (max-width: 365px) {
	
    .hero-title {
        font-size: 1.3rem;
    }
	
    .countdown-value {
        font-size: 1.0rem;
    }
	
    .countdown-item {
        min-width: 40px;
        padding: 3px 6px;
    }
}

@media handheld, (max-height: 450px) and (orientation: landscape)  {
    .hero-title {
        font-size: 1.1rem;
    }
	
	.intro-image img {
		display: none;
	}
	
    .countdown-container {
        padding-bottom: 5px;
    }
	
	.hero-subtitle {
		font-size: 1.0rem;
	}
	
	.splash-motto {
		font-size: 1.3rem;
		font-weight: 500;
	}
	
	.splash-cristian img {
		width: 100px;
		height: 100px;
	}
	
	.nav-brand span {
		font-size: 0.9rem;
	}

	.nav-brand .logo {
		height: 30px;
	}

	.navbar {
		padding: 5px 0;
	}

	.mobile-menu-toggle {
		padding: 2px;
	}

	.nav-menu-wrapper {
		padding: 10px 30px 30px;
		z-index: 1000;
	}

	.nav-menu {
		gap: 10px;
	}
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Page Headers */
.page-header {
    background-size: cover;
    background-position: 50% 28%;
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.page-header p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.chi-sono-header {
    background-image: url('images/cristian-header.jpg');
}

.risultati-header {
    background-image: url('images/results-header.jpg');
}

.contatti-header {
    background-image: url('images/contact-header.jpg');
}

/* Bio Section */
.bio-section {
    padding: 80px 0;
}

.bio-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hero della Bio - Immagine e Citazione */
.bio-hero {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.bio-image {
    position: sticky;
    top: 100px;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.bio-quote {
    background: var(--valpolicella-beige);
    padding: 30px;
    border-left: 5px solid var(--valpolicella-bordeaux);
    border-radius: 5px;
    font-style: italic;
    line-height: 1.8;
}

/* Contenuto Bio */
.bio-content {
    max-width: 100%;
}

.bio-content h2 {
    font-size: 2.8rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 30px;
    line-height: 1.2;
}

.bio-content h3 {
    font-size: 2rem;
    color: var(--valpolicella-verde);
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.bio-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.bio-values {
    margin-top: 60px;
    padding: 50px;
    background: var(--gray-light);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.bio-values h3 {
    margin-top: 0;
    text-align: center;
    font-size: 2.2rem;
}

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

.value-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-size: 1.4rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 12px;
}

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

/* Responsive Tablet */
@media (max-width: 1024px) {
    .bio-hero {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .bio-content h2 {
        font-size: 2.3rem;
    }
    
    .bio-content h3 {
        font-size: 1.8rem;
    }
    
    .bio-values {
        padding: 40px;
    }
}

/* Responsive Mobile - Portrait */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .bio-section {
        padding: 50px 0;
    }
    
    .bio-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .bio-image {
        position: relative;
        top: 0;
    }
    
    .bio-image img {
        max-width: 400px;
        margin: 0 auto 25px;
        display: block;
    }
    
    .bio-quote {
        padding: 25px;
        font-size: 1rem;
    }
    
    .bio-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .bio-content h3 {
        font-size: 1.6rem;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    
    .bio-content p {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .bio-values {
        padding: 35px 25px;
        margin-top: 40px;
    }
    
    .bio-values h3 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .cta-bio {
        padding: 60px 0;
    }
    
    .cta-bio h2 {
        font-size: 2rem;
    }
    
    .cta-bio p {
        font-size: 1.1rem;
    }
}

/* Responsive Mobile - Small Portrait */
@media (max-width: 480px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .bio-section {
        padding: 40px 0;
    }
    
    .bio-image img {
        max-width: 100%;
    }
    
    .bio-quote {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .bio-content h2 {
        font-size: 1.7rem;
    }
    
    .bio-content h3 {
        font-size: 1.4rem;
        margin-top: 30px;
    }
    
    .bio-content p {
        font-size: 1rem;
    }
    
    .bio-values {
        padding: 25px 20px;
    }
    
    .bio-values h3 {
        font-size: 1.5rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
    
    .value-item p {
        font-size: 0.95rem;
    }
    
    .cta-bio h2 {
        font-size: 1.6rem;
    }
    
    .cta-bio p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Responsive Mobile - Landscape */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .bio-section {
        padding: 40px 0;
    }
    
    .bio-hero {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .bio-image img {
        margin-bottom: 20px;
    }
    
    .bio-quote {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .bio-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .bio-content h3 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .bio-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .bio-values {
        padding: 30px;
        margin-top: 30px;
    }
    
    .bio-values h3 {
        font-size: 1.6rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-item {
        padding: 15px;
    }
    
    .value-item h4 {
        font-size: 1.1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .cta-bio {
        padding: 40px 0;
    }
}

/* Extra Small Landscape */
@media (max-width: 700px) and (max-height: 400px) and (orientation: landscape) {
    .bio-hero {
        grid-template-columns: 1fr;
    }
    
    .bio-image img {
        max-width: 200px;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cta-bio {
	padding-bottom: 40px;
}

/* Risultati Page */
.risultati-intro {
    padding: 60px 0;
    background: var(--gray-light);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.risultati-tematiche {
    padding: 80px 0;
}

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

.tematica-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tematica-icon {
    font-size: 4rem;
}

.tematica-header h2 {
    font-size: 2.5rem;
    color: var(--valpolicella-bordeaux);
}

.tematica-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.risultato-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--valpolicella-verde);
}

.risultato-card.highlight {
    background: var(--valpolicella-beige);
    border-left: 5px solid var(--valpolicella-oro);
}

.risultato-card h3 {
    font-size: 1.8rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 15px;
}

.risultato-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tematica-block.metodo {
    background: var(--valpolicella-verde);
    padding: 60px;
    border-radius: 15px;
    color: var(--text-light);
}

.tematica-block.metodo .tematica-header h2 {
    color: var(--text-light);
}

.tematica-block.metodo p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.metodo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.metodo-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--valpolicella-oro);
}

.metodo-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-risultati {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}

.cta-risultati h2 {
    font-size: 2.5rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 20px;
}

.cta-risultati p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--valpolicella-beige);
}

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

.newsletter-intro {
    text-align: center;
    margin-bottom: 50px;
}

.newsletter-intro h2 {
    font-size: 2.5rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 20px;
}

.newsletter-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Forms */
.newsletter-form,
.contact-form {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--valpolicella-bordeaux);
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--valpolicella-verde);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.6;
}

.info-block a {
    color: var(--valpolicella-bordeaux);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-vertical a {
    color: var(--valpolicella-bordeaux);
    text-decoration: none;
    font-weight: 500;
}

.social-links-vertical a:hover {
    text-decoration: underline;
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--valpolicella-bordeaux);
    margin-bottom: 40px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Animazioni aggiuntive */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}