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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improve touch targets on mobile */
@media screen and (max-width: 768px) {
    a, button, input, textarea, select {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent zoom on input focus on iOS */
    input, textarea, select {
        font-size: 16px;
    }
}

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

/* ================================
   HEADER + LOGO (Clean Responsive)
=================================== */

/* Header container */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 0 30px;
    height: 180px; 
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo container */
.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
}

/* Logo image - auto-adjusts within header height */
.header-logo {
    display: block;
    width: auto;
    height: 170px; 
    max-width: 550px; 
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation container */
.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    height: 100%;
}

/* Navigation links */
.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d4a574;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ================================
   Responsive Adjustments
=================================== */

/* Large screens (1200px+) */
@media (min-width: 1200px) {
    .header {
        padding: 0 50px;
    }
    .header-logo {
        height: 175px;
        max-width: 570px;
    }
    .nav-menu {
        gap: 40px;
    }
}

/* Laptops / Tablets landscape */
@media (max-width: 992px) {
    .header {
        padding: 0 25px;
        height: 160px;
    }
    .header-logo {
        height: 150px;
        max-width: 500px;
    }
    .nav-menu {
        gap: 25px;
    }
    .nav-link {
        font-size: 15px;
        padding: 0 12px;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: 155px;
    }
    .header-logo {
        height: 145px;
        max-width: 480px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 155px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 155px);
        background-color: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        height: auto;
        padding: 15px 20px;
        font-size: 18px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(212, 165, 116, 0.2);
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .header {
        padding: 0 15px;
        height: 130px;
    }
    .header-logo {
        height: 120px;
        max-width: 400px;
    }
    
    .nav-menu {
        top: 130px;
        height: calc(100vh - 130px);
        padding: 30px 15px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }
}

.slogan {
   position: relative;
   margin-top: 10px;
   font-family: 'Playfair Display', serif;
   font-size: 16px;
   font-weight: bold;
   color: white;
   letter-spacing: 1px;
   text-align: center;
   width: 200px; /* Match logo width */
}

.header-slogan { 
   font-size: 100%;   /* Reduced font size by half again */ 
   font-weight: bold; /* make it stand out */ 
   line-height: 1; 
   white-space: nowrap;
   color: #fff;       /* white text */
   font-family: 'Playfair Display', serif;
   position: absolute;
   bottom: 5px;
   left: 20px;
}

/* Navigation menu */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: -30px;
}

/* ================================
   NAVIGATION MENU (Clean)
=================================== */

/* Navigation styles are defined in the header section above */

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: #fff !important;
    display: block;
    position: relative;
    padding: 12px 18px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #fff;
    display: inline-block;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #E3DAC9;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 1001;
    border: 1px solid #d4a574;
    pointer-events: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}



.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #d4a574;
    color: #fff;
}

/* Add gap between header and hero section */
.hero-section {
    display: block;
    margin-top: 30px; /* Adjust as needed */
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

/* Desktop specific hero section styles */
@media screen and (min-width: 1024px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
        margin-top: 40px;
    }
}

/* Large desktop screens */
@media screen and (min-width: 1440px) {
    .hero-section {
        height: 75vh;
        min-height: 600px;
    }
}

/* Mobile responsive hero section */
@media screen and (max-width: 768px) {
    .hero-section {
        margin-top: 20px;
        height: 50vh;
        min-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        margin-top: 15px;
        height: 40vh;
        min-height: 250px;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Desktop specific slider optimizations */
@media screen and (min-width: 1024px) {
    .slider-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .slide-image {
        object-fit: cover;
        object-position: center;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #f5f1eb;
    display: block;
    opacity: 1;
}

.slide-image:not([src]),
.slide-image[src=""],
.slide-image[src="#"] {
    display: none;
}

/* Chi Siamo Section */
.chi-siamo-section {
    padding: 30px 0 10px;
    background-color: #fff;
    text-align: left;
}

.chi-siamo-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}

.chi-siamo-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #e6c49a);
    margin: 15px 0 0 0;
    border-radius: 2px;
}

/* Intro Section */
.intro-section {
    padding: 10px 0 80px;
    background-color: #fff;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.highlight {
    color: #d4a574;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.highlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #d4a574;
    margin-top: 30px;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: #fff;
}

.content-section.alt {
    background-color: #f9f9f9;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    color: #d4a574;
    font-weight: 600;
}

.content-image {
    flex: 1;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Banner Section */
.banner-section {
    position: relative;
    margin: 60px 0 60px 0;
    padding: 0;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.banner-text:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    touch-action: manipulation;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

/* Desktop specific slider arrow styles */
@media screen and (min-width: 1024px) {
    .slider-arrow {
        width: 60px;
        height: 60px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .slider-arrow:hover {
        background: rgba(0, 0, 0, 0.9);
        transform: translateY(-50%) scale(1.15);
    }
    
    .slider-arrow-left {
        left: 30px;
    }
    
    .slider-arrow-right {
        right: 30px;
    }
}

/* Large desktop screens */
@media screen and (min-width: 1440px) {
    .slider-arrow {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .slider-arrow-left {
        left: 40px;
    }
    
    .slider-arrow-right {
        right: 40px;
    }
}

/* Mobile responsive slider arrows */
@media screen and (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .slider-arrow-left {
        left: 5px;
    }
    
    .slider-arrow-right {
        right: 5px;
    }
}

/* Slide indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
}

/* Desktop specific indicator styles */
@media screen and (min-width: 1024px) {
    .slider-indicators {
        bottom: 30px;
        gap: 15px;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
        border-width: 3px;
    }
}

/* Hide indicators on small mobile devices */
@media screen and (max-width: 480px) {
    .slider-indicators {
        display: none;
    }
}

/* Enhanced Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-left.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.animate-right {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-right.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Footer */
.footer {
    background-color: #100C08;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-center {
    text-align: center;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.footer-column p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
}

/* ORARI Section Styles */
.orari-info {
    font-family: 'Inter', sans-serif;
}

.orari-subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    font-style: italic;
}

.orari-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.orari-item {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
}

.orari-item strong {
    color: #fff;
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.contact-info {
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-icon {
    margin-right: 10px;
    font-size: 16px;
}

.whatsapp-icon::before {
    content: "💬";
}

.phone-icon::before {
    content: "📞";
}

/* Official Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.facebook:hover {
    background-color: #166fe5;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a91a7a 100%);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.whatsapp:hover {
    background-color: #1da851;
}

/* WhatsApp Icon for Contact Info */
.whatsapp-icon {
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.whatsapp-icon::before {
    content: "\f232";
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6843c 0%, #d55a35 25%, #c5243c 50%, #b51f5f 75%, #a51581 100%);
}

/* About Page Styles */
.about-banner-beige {
    background: linear-gradient(135deg, #E3DAC9 0%, #D4C5B0 100%) !important;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-banner-beige .banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    white-space: nowrap;
}

.about-banner-image {
    margin: 60px 0;
}

.about-banner-image .banner-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.about-banner-image .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}



/* Chi Siamo heading styles */
.chi-siamo-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 40px;
}

/* Slogan content styles */
.slogan-content {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-line {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-style: italic;
}

.slogan-explanation {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.storia-section {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.storia-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.storia-left {
    flex: 1;
}

.storia-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.storia-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
}

.boss-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .storia-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .storia-heading {
        text-align: center;
    }
}

.slogan-section {
    padding: 80px 0;
    background-color: #fff;
}

.slogan-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.slogan-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #d4af37;
    margin: 0 0 40px 0;
    font-style: italic;
}

.slogan-explanation {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Hair Services Page Styles */
/* Updated banner gradients - force refresh */
.hair-banner {
    background: linear-gradient(135deg, #E3DAC9 0%, #D4C5B0 100%) !important;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Banner Image Section */
.banner-image-section {
    margin: 60px 0;
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.services-categories {
    padding: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 15px;
}

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

.service-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #f5f1eb;
}

.service-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    color: #b8941f;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Beauty Services Page Styles */
.beauty-banner {
    background: linear-gradient(135deg, #E3DAC9 0%, #D4C5B0 100%) !important;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.beauty-banner .banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.3;
}

.beauty-cover-section {
    margin: 60px 0;
}

.cover-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beauty-description {
    text-align: center;
    margin: 40px 0;
}

.description-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.beauty-services-categories {
    margin: 60px 0;
}

.beauty-gallery {
    margin: 60px 0;
}

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

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Nail Services Page Styles */
.nails-banner {
    background: linear-gradient(135deg, #E3DAC9 0%, #D4C5B0 100%) !important;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.nails-banner .banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.3;
}

.nails-content {
    padding: 60px 0;
    text-align: center;
}

.nails-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.content-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.nails-cover-section {
    margin: 60px 0;
}

.nails-description {
    text-align: center;
    margin: 40px 0;
}

.nails-services-categories {
    margin: 60px 0;
}

.nails-gallery {
    margin: 60px 0;
}

/* Contact Page Styles */
.contact-banner {
    background: linear-gradient(135deg, #E3DAC9 0%, #D4C5B0 100%) !important;
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}

.banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 1px;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Map Section Styles */
.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    flex: 1;
}

.form-heading,
.info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.submit-btn {
    background-color: #d4a574;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #c19660;
    transform: translateY(-2px);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #999999;
    border-radius: 10px;
}

.contact-item .contact-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.social-section {
    text-align: center;
}

.social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Service Pages Styles */
.service-banner {
    background-color: #f5f1eb;
    padding: 80px 0;
    text-align: center;
}

.service-banner-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 1px;
}

.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro .intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-item {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #333;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.about-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4a574;
    margin: 20px auto 0;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.salon-story,
.philosophy {
    margin-bottom: 50px;
}

.story-heading,
.philosophy-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.story-text,
.philosophy-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.philosophy {
    text-align: center;
}

.philosophy-text {
    text-align: center;
}

/* Price List Styles */
.price-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #100C08;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E3DAC9, #D4C5B0);
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #100C08;
    margin: 30px 0 20px 0;
    text-align: left;
}

.price-list {
    max-width: 800px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #E3DAC9;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.service-name {
    font-weight: 500;
    color: #100C08;
    flex: 1;
}

.service-price {
    font-weight: 600;
    color: #E3DAC9;
    font-size: 1.1rem;
}

/* Styled preformatted lists for Epilazione sections */
.updated-services {
    display: block;
    white-space: pre; /* preserve tabs and spaces exactly */
    font-family: inherit;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #E3DAC9;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: #100C08;
}

.price-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    text-align: center;
}

.price-note p {
    color: #856404;
    margin: 0;
}

@media (max-width: 768px) {
    
    .intro-text {
        font-size: 16px;
    }
    
    .highlight-quote {
        font-size: 20px;
    }
    
    .chi-siamo-heading {
        font-size: 32px;
    }
    
    .about-heading {
        font-size: 36px;
    }
    
    .story-heading,
    .philosophy-heading {
        font-size: 28px;
    }
    
    .story-text,
    .philosophy-text {
        text-align: left;
    }
    
    .content-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-image {
        height: 300px;
    }
    
    .banner-container {
        height: 200px;
    }
    
    .banner-text {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .service-price {
        margin-top: 5px;
        align-self: flex-end;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    /* Services page mobile styles */
    .hair-banner,
    .beauty-banner,
    .nails-banner {
        padding: 60px 0 !important;
        margin-bottom: 40px !important;
    }
    
    .banner-heading {
        font-size: 2rem !important;
        padding: 0 20px;
        line-height: 1.2;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-categories {
        padding: 30px 20px !important;
    }
    
    .service-category {
        margin-bottom: 40px !important;
    }
    
    .category-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-item {
        padding: 25px 20px !important;
        text-align: center;
    }
    
    .service-item h3 {
        font-size: 1.3rem !important;
        margin-top: 15px;
    }
    
    .service-icon {
        font-size: 2.5rem !important;
    }
    
    .cover-image-container {
        height: 250px !important;
        margin: 30px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .gallery-item {
        height: 200px !important;
    }
    
    .description-text {
        font-size: 1rem !important;
        padding: 0 20px;
    }
    
    .contact-content {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .contact-banner {
        padding: 60px 0 !important;
        margin-top: 0 !important;
    }
    
    .map-section {
        padding: 60px 0 !important;
    }
    
    .map-heading {
        font-size: 28px !important;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .intro-section,
    .about-section {
        padding: 50px 0;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .highlight-quote {
        font-size: 18px;
    }
    

    
    .chi-siamo-section {
        padding: 20px 0 15px;
    }
    
    .chi-siamo-heading {
        font-size: 28px;
    }
    
    .about-heading {
        font-size: 32px;
    }
    
    .story-heading,
    .philosophy-heading {
        font-size: 24px;
    }
    
    .story-text,
    .philosophy-text {
        font-size: 15px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .content-text {
        font-size: 15px;
    }
    
    .section-image {
        height: 250px;
    }
    
    .banner-container {
        height: 150px;
    }
    
    .banner-text {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    /* Small mobile devices - Services pages */
    .hair-banner,
    .beauty-banner,
    .nails-banner {
        padding: 40px 0 !important;
        margin-bottom: 30px !important;
    }
    
    .banner-heading {
        font-size: 1.6rem !important;
        padding: 0 15px;
    }
    
    .services-section {
        padding: 30px 0;
    }
    
    .services-categories {
        padding: 20px 15px !important;
    }
    
    .service-category {
        margin-bottom: 30px !important;
    }
    
    .category-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
        padding: 0 5px;
    }

    .service-item {
        padding: 20px 15px !important;
    }
    
    .service-item h3 {
        font-size: 1.1rem !important;
    }
    
    .service-icon {
        font-size: 2rem !important;
    }
    
    .cover-image-container {
        height: 200px !important;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .gallery-item {
        height: 180px !important;
        border-radius: 10px;
    }
    
    .description-text {
        font-size: 0.9rem !important;
        padding: 0 15px;
    }
    
    .contact-banner {
        padding: 40px 0 !important;
    }
    
    .map-section {
        padding: 40px 0 !important;
    }
    
    .map-heading {
        font-size: 24px !important;
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Mobile Services - Static headings instead of dropdown */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        display: block !important;
        background-color: transparent !important;
        padding: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        min-width: auto !important;
        z-index: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: none !important;
    }
    
    .dropdown-menu li {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .dropdown-menu li a {
        display: block !important;
        padding: 12px 20px 12px 40px !important; /* Extra left padding for indentation */
        font-size: 16px !important;
        font-weight: bold !important;
        color: #fff !important;
        text-decoration: none !important;
        border-radius: 0 !important;
        transition: background-color 0.3s ease !important;
        background-color: transparent !important;
        border-left: 3px solid transparent !important;
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(212, 165, 116, 0.3) !important;
        border-left: 3px solid #d4a574 !important;
        color: #fff !important;
    }
}