/* --- IMPORTAZIONE FONT E ICONE --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* --- RESET BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    color: #121212; 
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

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

/* --- HEADER --- */
.top-bar { background: #000; color: #fff; text-align: center; font-size: 10px; padding: 8px; text-transform: uppercase; letter-spacing: 2px; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px solid #f2f2f2; }
.logo img {
    height: 50px;
    width: auto;
    margin: 24px 0px 10px 0px;
}
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #000; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* --- HERO --- */
.hero { 
    position: relative; height: 70vh; 
    background: url('assets/hero.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 32px; font-weight: 300; margin-bottom: 25px; letter-spacing: 1px; }
.btn-outline { display: inline-block; padding: 12px 30px; border: 1px solid #fff; color: #fff; text-decoration: none; text-transform: uppercase; font-size: 11px; letter-spacing: 2px; }

/* --- SEZIONE BENVENUTI (Intro) --- */
.intro { 
    padding: 100px 20px; 
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.fashion-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 42px; 
    font-weight: 400; 
    margin-bottom: 30px;
    color: #1a1a1a;
}
.intro p {
    font-size: 17px;
    font-weight: 300;
    color: #444;
    line-height: 1.8;
}

/* --- SHOWCASE 3 FOTO (HOME) --- */
.showcase { padding-bottom: 100px; }
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 50px; }
.showcase-item { text-align: center; }
.showcase-item img { width: 100%; height: auto; margin-bottom: 20px; filter: grayscale(5%); transition: 0.4s; }
.showcase-item img:hover { filter: grayscale(0%); transform: translateY(-5px); }
.showcase-item h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    font-weight: 400; 
    color: #121212;
}

/* --- PAGINA CONTATTI (RE-DESIGN) --- */
.contact-page { padding: 80px 25px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 60px; margin-top: 40px; }
.contact-section { margin-bottom: 40px; }
.contact-section h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    font-weight: 400; 
    margin-bottom: 15px; 
    color: #000;
}
.contact-section p { font-size: 16px; color: #333; margin-bottom: 8px; }

/* Rimosso blu dai link */
.text-link { color: #000; text-decoration: none; transition: 0.3s; border-bottom: 1px solid transparent; }
.text-link:hover { border-bottom: 1px solid #000; }

/* Bottoni Fashion: Bianchi con bordo e scritte nere */
.fashion-buttons { display: flex; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.btn-fashion { 
    display: inline-block; 
    padding: 12px 25px; 
    border: 1px solid #000; 
    background: #fff; 
    color: #000 !important; 
    text-decoration: none; 
    font-size: 11px; 
    letter-spacing: 2px; 
    font-weight: 500; 
    transition: 0.3s; 
}
.btn-fashion:hover { background: #000; color: #fff !important; }

/* Mappa Sophisticated */
.map-container { width: 100%; filter: grayscale(100%); transition: 0.5s; border: 1px solid #f2f2f2; }
.map-container:hover { filter: grayscale(0%); }

/* --- FOOTER NERO --- */
.dark-footer { background: #000; color: #fff; padding: 80px 0 40px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 50px; text-align: center; }
.dark-footer h4 { text-transform: uppercase; font-size: 13px; letter-spacing: 2px; margin-bottom: 25px; font-weight: 500; color: #fff; }
.footer-socials { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
.footer-socials a { color: #fff; font-size: 22px; transition: 0.3s; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #888; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #222; margin-top: 50px; padding-top: 30px; font-size: 11px; color: #555; text-align: center; }

/* --- RESPONSIVE DESKTOP --- */
@media (min-width: 768px) {
    .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
    .footer-grid { grid-template-columns: 1.5fr 1fr; text-align: left; }
    .footer-socials { justify-content: flex-start; }
    .hero-content h1 { font-size: 52px; }
    .fashion-title { font-size: 52px; }
}
