/* alternativecss.css */

/* VARIABILI */
:root {
  --primary-color: #0066cc;
  --secondary-color: #004d99;
  --accent-color: #00aaff;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --text-color: #444444;
  --white: #ffffff;
  --gray: #e9ecef;
  --dark-gray: #6c757d;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* HEADER */
.modern-header {
  background-color: var(--primary-color); 
  color: var(--white); 
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-wrapper img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.logo-white {
    width: 140px;
    height: auto;
    filter: none; 
}


/* NAVIGAZIONE */
.desktop-nav ul {
    display: flex;
    gap: 25px;
}

.desktop-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.9);
}

.desktop-nav a:hover {
 color: var(--white) !important;
  border-bottom-color: var(--white) !important;
}

.desktop-nav a i {
  font-size: 0.9rem;
}

/* PULSANTI */
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.secondary-button {
    display: none !important;
}

.primary-button {
   background-color: var(--secondary-color); /* Blu più scuro */
  color: var(--white);
}

.primary-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}


.secondary-button:hover {
  background-color: rgba(0, 102, 204, 0.1);
}

.header-cta {
  display: flex;
  gap: 15px;
}

/* HERO SECTION */
.hero {
 background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('resources/hotel-laundry-hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-top: 90px;
  margin-bottom: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* CONTENUTO PRINCIPALE */
.impact-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.impact-title span {
  color: var(--primary-color);
}

.keyword {
  color: var(--primary-color);
  font-weight: 600;
}

.content-wrapper {
  margin-bottom: 50px;
}

.right-image {
  float: right;
  margin: 0 0 25px 30px;
  width: 45%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  
}

.left-image {
  float: left;
  margin: 0 30px 25px 0; 
  width: 45%;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}


/* w */
.gallery-slider {
  position: relative;
  margin: 40px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 15px;
  text-align: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: var(--transition);
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray);
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.mobile-menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.mobile-contacts {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
   color: var(--white) !important;
  cursor: pointer;
}

/* FOOTER */
.modern-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
    padding-top: 100px;
    padding-bottom: 40px;
    margin-top: auto;
}

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

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column h4 i {
  color: var(--accent-color);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.about-section {
  padding-bottom: 80px;
  margin-top: 210px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-nav, .header-cta {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    height: 70vh;
    margin-top: 70px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .right-image, .left-image {
    float: none;
    width: 100%;
    margin: 0 0 25px 0;
  }
  
  .slide img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .slide img {
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* MAPPA GOOGLE */
.map-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
    justify-content: space-between;
}

.text-section {
    flex: 1;
    min-width: 300px;
    padding-top: 0;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 10px;
    padding: 0;
    align-self: flex-start;
}

    .map-container iframe {
        width: 100%;
        height: 500px;
        border: 0;
        margin: 0;
        padding: 0;
    }

@media (max-width: 768px) {
    .map-text-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .map-container {
        width: 100%;
    }

        .map-container iframe {
            height: 400px;
        }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 300px;
    }
}