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

body {
    font-family: 'Roboto', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 1px;
}

h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #cc9b33 0%, #f4e4c1 50%, #cc9b33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #cc9b33;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #cc9b33;
}

/* Centra i titoli delle sezioni Storia, Chi Siamo e Vision */
#storia h2,
#chi-siamo h2,
#vision h2 {
    display: block;
    text-align: center;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #f4e4c1;
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    font-weight: 300;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(204, 155, 51, 0.2);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.owl-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

/*
.logo:hover .owl-icon {
    transform: rotate(-10deg);
}
    */

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f5f5f5;
    letter-spacing: 2px;
}

.logo-text-image {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

.nav-links a {
    text-decoration: none;
    color: #d0d0d0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #cc9b33;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #cc9b33;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #d0d0d0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.lang-btn:hover {
    color: #cc9b33;
}

.lang-btn.active {
    color: #cc9b33;
    font-weight: 500;
}

.lang-separator {
    color: #666;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        radial-gradient(ellipse at center, #2a2a2a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(204, 155, 51, 0.05) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    height: 4.5rem;
    width: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    object-fit: contain;
}

.hero .tagline {
    font-size: 1.8rem;
    font-style: italic;
    color: #cc9b33;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .year {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 6rem 3rem;
    position: relative;
}

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

.section-dark {
    background-color: #0a0a0a;
}

.section-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

/* Storia Section */
.storia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.storia-text {
    position: relative;
}

.storia-text::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: -30px;
    font-size: 200px;
    color: rgba(204, 155, 51, 0.1);
    font-family: 'Playfair Display', serif;
}

.storia-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 155, 51, 0.3);
    border-radius: 4px;
}

.storia-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(204, 155, 51, 0.1) 100%);
    pointer-events: none;
}

.storia-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: sepia(0.15) contrast(1.05);
    transition: transform 0.5s ease;
}

.storia-image:hover .storia-photo {
    transform: scale(1.05);
}

/* Chi Siamo */
.chi-siamo-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.3rem;
    color: #f4e4c1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(204, 155, 51, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(204, 155, 51, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 155, 51, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.value-card:hover::before {
    transform: scale(1);
}

.value-card h3 {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(204, 155, 51, 0.5);
}

.chi-siamo-image {
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.vigneto-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: sepia(0.1) saturate(1.1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.chi-siamo-image:hover .vigneto-photo {
    transform: scale(1.05);
    filter: sepia(0.05) saturate(1.2);
}

/* Vision */
.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.vision-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 155, 51, 0.3);
    border-radius: 4px;
}

.vision-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 60%, rgba(204, 155, 51, 0.1) 100%);
    pointer-events: none;
}

.filari-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: sepia(0.15) contrast(1.05);
    transition: transform 0.5s ease;
}

.vision-image:hover .filari-photo {
    transform: scale(1.05);
}

.vision-text {
    position: relative;
}

.quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #cc9b33;
    margin: 3rem 0 0;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    line-height: 1.4;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.3;
    top: -20px;
    left: -40px;
}

/* Wine Section */
.wine-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wine-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
    background: linear-gradient(135deg, rgba(204, 155, 51, 0.05) 0%, transparent 100%);
    padding: 4rem;
    border: 1px solid rgba(204, 155, 51, 0.2);
}

.wine-bottle {
    position: relative;
    text-align: center;
}

.wine-bottle img {
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.wine-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #cc9b33;
    margin-bottom: 2rem;
    font-weight: 300;
}

.wine-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f4e4c1;
    margin-bottom: 2rem;
}

.wine-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.spec-item {
    padding: 1.5rem;
    background: rgba(204, 155, 51, 0.05);
    border-left: 3px solid #cc9b33;
}

.spec-item:first-child {
    grid-column: span 2;
}

.spec-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.3rem;
    color: #f4e4c1;
    font-family: 'Playfair Display', serif;
}

/* Wine Full Width Section */
.wine-full-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 4rem;
}

.wine-full-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.wine-full-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.wine-full-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wine-full-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #cc9b33;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.wine-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f4e4c1;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.wine-characteristics {
    margin-bottom: 2.5rem;
}

.wine-characteristics h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #cc9b33;
    margin-bottom: 1rem;
    font-weight: 400;
}

.wine-characteristics p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

.wine-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.spec-item-inline {
    display: flex;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(204, 155, 51, 0.2);
}

.spec-item-inline .spec-label {
    font-size: 0.9rem;
    color: #cc9b33;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 130px;
    font-weight: 500;
}

.spec-item-inline .spec-value {
    font-size: 1rem;
    color: #f4e4c1;
    flex: 1;
}

/* Coming Soon Section */
.wine-coming-soon {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(204, 155, 51, 0.05) 0%, rgba(204, 155, 51, 0.02) 100%);
    border: 2px solid rgba(204, 155, 51, 0.3);
    border-radius: 8px;
    text-align: center;
    position: relative;
}


.coming-soon-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f4e4c1;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.coming-soon-wines {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #cc9b33;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.coming-soon-wines span {
    display: inline-block;
}

.coming-soon-wines .separator {
    margin: 0 1.5rem;
    opacity: 0.5;
}

.coming-soon-quote {
    font-size: 1.1rem;
    color: #d0d0d0;
    font-style: italic;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: #000;
    padding: 4rem 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(204, 155, 51, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
}

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

.footer-info {
    color: #888;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.footer-info p {
    margin-bottom: 0;
}

.footer-info a {
    color: #cc9b33;
    text-decoration: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

/* Tablet (iPad) */
@media (max-width: 1024px) {
    .wine-full-section {
        grid-template-columns: 1fr;
    }

    .wine-full-image {
        min-height: 500px;
    }

    .wine-full-content {
        padding: 3rem 4rem;
    }

    .wine-full-content h3 {
        font-size: 2.5rem;
    }

    .wine-intro {
        font-size: 1.1rem;
    }

    .wine-characteristics h4 {
        font-size: 1.4rem;
    }

    .wine-characteristics p {
        font-size: 0.95rem;
    }

    /* Coming Soon Responsive */
    .coming-soon-content {
        padding: 3rem 2rem;
    }

    .coming-soon-wines {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 1rem 1rem;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .logo-text-image {
        height: 25px;
    }

    .owl-icon {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    /* Language switcher mobile - Centrato nell'header */
    .lang-switch {
        position: static;
        margin-left: auto;
    }

    .hero-logo {
        height: 3.5rem;
    }

    .hero .tagline {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .storia-content,
    .wine-showcase,
    .vision-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .storia-text::before {
        font-size: 100px;
        top: -30px;
        left: -15px;
    }

    .storia-photo {
        height: 350px;
    }

    .vigneto-photo {
        height: 350px;
    }

    .chi-siamo-image {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .filari-photo {
        height: 350px;
    }

    .quote {
        font-size: 1.3rem;
        margin: 2rem 0 0;
    }

    .quote::before {
        left: -15px;
        font-size: 3rem;
    }

    .wine-showcase {
        padding: 2rem 1rem;
        gap: 3rem;
    }

    .wine-bottle div {
        width: 250px !important;
        height: 350px !important;
    }

    .wine-details h3 {
        font-size: 2rem;
    }

    .wine-description {
        font-size: 1.1rem;
    }

    .wine-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-item {
        padding: 1rem;
    }

    .spec-item:first-child {
        grid-column: 1;
    }

    /* Wine Full Width Responsive */
    .wine-full-image {
        min-height: 350px;
    }

    .wine-full-content {
        padding: 2rem 1.5rem;
    }

    .wine-full-content h3 {
        font-size: 1.8rem;
    }

    .wine-intro {
        font-size: 1rem;
    }

    .wine-characteristics h4 {
        font-size: 1.2rem;
    }

    .wine-characteristics p {
        font-size: 0.9rem;
    }

    .spec-item-inline {
        flex-direction: column;
        gap: 0.3rem;
    }

    .spec-item-inline .spec-label {
        min-width: auto;
        font-size: 0.8rem;
    }

    .spec-item-inline .spec-value {
        font-size: 0.9rem;
    }

    .spec-value {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .chi-siamo-intro {
        font-size: 1.1rem;
    }

    /* Coming Soon Mobile */
    .coming-soon-content {
        padding: 2.5rem 1.5rem;
    }

    .coming-soon-text {
        font-size: 1.1rem;
    }

    .coming-soon-wines {
        font-size: 1.3rem;
    }

    .coming-soon-wines .separator {
        margin: 0 1rem;
    }

    .coming-soon-quote {
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
    }

    .footer-info {
        font-size: 0.85rem;
    }

    .wine-bottle img {
        max-width: 300px;
    }
}