/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* Larghezza massima al sito */
body {
    max-width: 1920px;
    margin: 0 auto;
}


/*Popup form stilizzazione label upload CV */
.upload-label-form {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #F2EDE5; /* beige chiaro */
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-size: clamp(12px, 0.85vw, 14px); 
  display: inline-block;
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 1024px) {
  .upload-label-form {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .upload-label-form {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    display: block;
    margin-top: 8px;
    opacity: 1;
  }
}


/* 100 title stilysh */
/* Desktop */
.dkr-inline-big {
    font-size: 1.1em;
    line-height: 1;
    display: inline-block;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .dkr-inline-big {
        font-size: 1em;
        line-height: 1.05;
    }
}

/* Smartphone */
@media (max-width: 767px) {
    .dkr-inline-big {
        font-size: 0.95em;
        line-height: 1.1;
    }
}


/* Stilysh bottle image */
/* Desktop: bottiglia ingrandita */
.dkr-bottle {
    margin-top: -75vh !important;
}

.dkr-bottle img {
    transform: scale(1.5);
    transform-origin: center center;
}


/* TABLET (768px – 1024px): bottiglia molto più grande */
@media (max-width: 1024px) and (min-width: 768px) {
    .dkr-bottle {
        margin-top: -40vh !important;
    }

    .dkr-bottle img {
        transform: scale(2.5);
        transform-origin: center center;
    }
}


/* SMARTPHONE (max-width: 767px): versione ottimizzata */
@media (max-width: 767px) {
    .dkr-bottle {
        margin-top: -120vh !important; 
    }

    .dkr-bottle img {
        transform: scale(1.0) translateX(40vw) translateY(10vh);
        transform-origin: center center;
    }
}

/* Stilysh wine element */
.dkr-wine {
    margin-top: -55vh !important;
}

/* Tablet (768px – 1024px): scala 2.5× e margin-top -20vh */
@media (max-width: 1024px) and (min-width: 768px) {
    .dkr-wine {
        margin-top: -90vh !important;
    }

    .dkr-wine img {
        transform: scale(1) translateY(0);
        transform-origin: center center;
    }
}

/* SMARTPHONE (max-width: 767px): versione ottimizzata */
@media (max-width: 767px) {
    .dkr-wine {
        margin-top: -90vh !important; 
    }

    .dkr-wine img {
        transform: scale(1.0) translateX(40vw);
        transform-origin: center center;
    }
}

/* Disattiva interazioni su wine-pour SOLO su mobile */
@media (max-width: 768px) {
    wine-pour {
        pointer-events: none !important;
    }
}

/* LINK */
a {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

a:hover {
	color: inherit;
    text-decoration: underline;
}