@font-face {
    font-family: 'ReenieBeanie';
    font-weight: normal;
    src: url("./assets/fonts/ReenieBeanie-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Degular';
    font-weight: normal;
    src: url("./assets/fonts/Degular-Regular.otf") format("opentype");
}

@font-face {
    font-family: 'Degular';
    font-weight:600;
    font-style: italic;
    src: url("./assets/fonts/Degular-MediumItalic.otf") format("opentype");
}

@font-face {
    font-family: 'Degular';
    font-weight: bold;
    src: url("./assets/fonts/Degular-Bold.otf") format("opentype");
}

/* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Degular', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        * a {
            text-decoration: none;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.1;
        }
        
        h2 {
            font-size: 3.5rem;
            position: relative;
            /* padding-bottom: 15px; */
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            /* background: #00a79d; */
        }
      
        
        p {
            margin-bottom: 15px;
            /* font-size: 1.1rem; */
        }

        .text-pink {
            color: #D8328A!important;
            text-decoration: none!important;
        }

        .text-navyblue {
            color: #003366;
        }
        
        .btn {
            display: inline-block;
            background: #00a79d;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #00857c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Header styles */
        header {
            position:sticky;
            top: 0;
            left: 0;
            width: 100%;
            /*z-index: 1000;*/
            /*background: #f9f9f9;*/
            padding: 35px 0;
            padding-bottom: 15px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0066a6;
            line-height: 1;
        }
        
        .logo-text .tagline {
            font-size: 0.9rem;
            color: #00a79d;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #0066a6;
            font-weight: normal;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        nav ul li a:hover {
            color: rgba(216, 50, 138, 255);
        }
        
        /* Products section */
        .products {
            background: white;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .section-header .title-section {
            font-family: 'Degular';
            font-weight: normal;
            color: #1b9cd9;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
                
        
        /* Footer */
        footer {
            background: #004a7c;
            color: rgba(255, 255, 255, 0.7);
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-logo img {
            height: 40px;
        }
        
        .footer-logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo-text .brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }
        
        .footer-logo-text .tagline {
            font-size: 0.8rem;
            color: #00a79d;
            font-weight: 500;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: #00a79d;
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }        
            
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .values {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                /* padding: 60px 0; */
            }

            header {
                position:sticky;
                padding: 35px 0;
                height: 20%;
                background-color: rgba(249, 249, 249, .8);
            }
        }
/* Hero section */
        
section.hero {
    /*padding: 80px 0;*/
}

.hero {
    height: 100vh;
    /* min-height: 700px; */
    background: url('./assets/woman/1024.png') no-repeat bottom/contain;
    color: white;
   
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-weight: 100;
    font-family: 'Degular';
    letter-spacing:.02in;
    color: #003366; /*rgb(216, 50, 138);*/
    font-size: 2rem;
    margin-bottom: 20px;
    /*
    text-shadow: 
        .5px .5px .5px #003366,  /*#d8328a,
        2px 2px 2px rgba(255,255,255,1.0);
    */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero .btn {
    background: white;
    color: #0066a6;
    font-size: 1.1rem;
}

.hero .btn:hover {
    background: #f0f0f0;
}

@media (max-width: 1024px) and (orientation: portrait) {
    
    .hero {
        background: url('./assets/woman/1024.png') no-repeat bottom/contain;
    } 
}

@media (max-width: 920px) and (orientation: landscape) {
    
    .hero {
        clear: both;
        background-size: contain;
    }
  }

@media (max-width: 576px) and (orientation: portrait) {  
    .hero {
        background: url('./assets/woman/576.png') no-repeat top/contain;
    }
}

@media (max-width: 768px) {  
    .hero {
        background: url('./assets/woman/576.png') no-repeat center bottom;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {    
    .hero {
        background: url('./assets/woman/576.png') no-repeat center top/contain;
    }
    
    .hero h1 {
        letter-spacing:.01in;
        font-size: 2.3rem;
    }
}


@media (max-width: 480px) {    
    .hero {
        background: url('./assets/woman/576.png') no-repeat center bottom/cover;
    }
    
    .hero h1 {
        letter-spacing:.01in;
        font-size: 2.3rem;
    }
}

/* Products section */

section.products {
    padding: 35px 0;
}

.products {
    background: white;
}

.products {
    padding-top: 100px!important;
    background: white;
}

.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.column {
    flex: 1;
    background: white;
    align-items: center;
    border-radius: 10px;
    padding: 25px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    display: flex;
    flex-direction: column;
}

.circle {
    width: 35vw;
    height: 35vw;
    max-width: 700px;
    max-height: 700px;
    background-color: #1b9cd9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
    flex-direction: column;
    font-size: x-large;
}


.circle h3 {
    font-weight: 100;
    font-family: 'Degular';
    letter-spacing:.02in;
    text-decoration: none;
    color: rgb(216, 50, 138);
    font-size: 2em;
    text-shadow:
        .5px .5px .5px rgba(216, 50, 138,1.0),
        2px 2px 2px rgba(255,255,255,1.0);;
}

.circle .emporio-incircle {
    max-width: 50%;
    max-height: 50%;
}


.products-container {
    display: block;
    grid-template-columns: 50% 50%;
    gap: 8px;
    padding: 20px 5%;
  }

  .products-container > img {
    text-align: center;
  }
  
  .product-img {
    width:50%;
    height: auto;
    /* border: 1px solid #ccc;
    border-radius: 8px; */
  }


@media (max-width: 768px) {
    .columns-container {
        flex-direction: column;
    }    
    .column {
        min-width: 100%;
    }

    .products .circle {
        width: 300px;
        height: 300px;
        font-size:xx-large;
    }

    .circle h3 {
        font-weight: 100;
        font-family: 'ReenieBeanie';
        letter-spacing:.02in;
        color: #D8328A;
        font-size: 1em;
        text-shadow: 1px 1px 1px rgba(255,255,255,1.0);
    }
    
    .circle .emporio-incircle {
        max-width: 50%;
        max-height: 50%;
    }

    .products-container {
        display: inline-block;
    }
    .products-container > img {
        width: 30%;
    }
}

@media (max-width: 480px) {  

    .products .circle {
        width: 220px;
        height: 220px;
        font-size:xx-large;
    }

    .columns-container {
        flex-direction: column;
    }    
}

/* About section */

section.about {
    /* padding: 35px 0; */
    padding-top: 35px;
    padding-bottom: 35px;
}

.about {
  background: linear-gradient(to bottom, #1b9cd9, #1b9cd9);
  padding-top: 100px!important;
}



.about h2 {
  font-family: "Degular";
  font-weight: normal;
  color: white;
}

.about-content {
    align-items: center;
    margin: 0 auto;
}

.about .circle {
    width: 95vw;
    height: 95vw;
  background-color: white;
  margin: 0 auto;
}

.about-text {
    color: #1a3674;
    padding: 0 12%;
    line-height: 1.1;
    font-size: .85em;
    text-align: center;
}


.about-text strong {
  font-weight: 600;
}

@media (max-width: 1024px) {
    .about .circle {
        width: 95vw;
        height: 95vw;
    }

    .about-text {
        padding: 0 18%;
        font-size: 2em;
    }
}

/* Responsive design */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about .circle {
    width: 95vw;
    height: 95vw;
    font-size:xx-large;
  }

  .about-text {
    font-size: .6em;
    line-height: 1.1;
    text-align: center;
}

  .about-image {
    height: 300px;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
    .about-text {
        padding: 0 18%;
        font-size: .8em;
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 0 18%;
        font-size: .6em;
    }
}

@media (max-width: 600px) {
    .about-text {
        padding: 0 18%;
        font-size: .4em;
    }
}

@media (max-width: 576px) {
    .about-text {
        padding: 0 18%;
        font-size: .31em;
    }
}

@media (max-width: 540px) {
    .about-text {
        padding: 0 18%;
        font-size: .43em;
    }
}

@media (max-width: 480px) {
    .about-text {
        padding: 0 18%;
        font-size: .30em;
    }
}

@media (max-width: 360px) {
    .about-text {
        padding: 0 18%;
        font-size: .28em;
    }
}

        /* Sezione Contatti */
        .contact {
            height: 100vh;
            min-height: 700px;
            background: 
                linear-gradient(rgba(0, 103, 166, 0.0), rgba(0, 103, 166, 0.0)), 
                url('./assets/man.png') no-repeat center top/cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Contenitore principale */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.8fr 1fr;
            width: 100%;
            height: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Stile colonne */
        .contact-column {
            display: flex;
            position: relative;
        }
        
        /* Colonna sinistra vuota */
        .column-left {
            /* Nessun contenuto */
        }
        
        /* Colonna centrale con titolo */
        .column-center {
            justify-content: center;
            align-items:center;
            padding-bottom: 80px;
        }
        
        /* Colonna destra con recapiti */
        .column-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-left: 30px;
        }
        
        /* Stile titolo */
        .contact-title h1 {
            font-weight: 100;
            font-family: 'Degular';
            /*letter-spacing: 0.05in;*/
            /*color: #D8328A;*/
            color: white;
            font-size: 2rem;
            /*text-shadow: 1px 1px 1px rgba(255,255,255,1.0);*/
            text-align: center;
            margin-top: 300%;
        }
        
        /* Stile recapiti */
        .contact-address {
            margin-bottom: 32px;
        }
        
        .contact-address p {
            color: #1b9cd9;
            margin-bottom: 0px;
            font-size: 1.5rem;
            line-height: 1.3;
            letter-spacing: 0.1;
        }
        
        /* Stile email */
        .column-right h2 {
            letter-spacing: 0.01in;
            color: #D8328A;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .column-right h2 a {
            text-decoration: none;
        }
        
        /* Media queries per la responsività */
        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
            
            .column-left {
                display: none;
            }
            
            .column-center, .column-right {
                align-items: center;
                justify-content: center;
                padding: 0;
                text-align: center;
            }
            
            .column-center {
                order: 2;
                padding-top: 10vh;
            }
            
            .column-right {
                order: 1;
                padding-left: 0;
                align-items: center;
            }

            .contact-address {
                background-color: rgba(255,255,255,.8);
                padding: 28px;
                border-radius: 15px;
            }
            .contact-address h2 {
                margin-bottom: 0px;
            }
            
            .contact-title h1 {
                margin-top: 0;
            }
            
            
            .contact-address p {
                font-size: 1.3rem;
            }
            
            .column-right h2 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact {
                height: auto;
                min-height: 80vh;
                padding: 60px 0;
            }
            
            .contact-title h1 {
                font-size: 3rem;
            }
            
            .contact-address p {
                font-size: 1.2rem;
            }
            
            .column-right h2 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .contact {
                background-size: 250%;
                background-position: center;
                min-height: 70vh;
            }
            
            .contact-title h1 {
                font-size: 2.3rem;
                letter-spacing: 0.01in;
            }
            
            .contact-address p {
                font-size: 1rem;
            }
            
            .column-right h2 {
                font-size: 1rem;
            }
        }
        
        /* Effetto overlay per migliorare la leggibilità */
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: rgba(255, 255, 255, 0.3);*/
            z-index: 0;
        }
        
        .contact > * {
            position: relative;
            z-index: 1;
        }