body {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: white;
	background: #cccccc;
}

.logo {
    max-width: 600px;      
    width: 100%;            
    margin: 2rem auto 0;  
    padding: 0 20px;       
    box-sizing: border-box;
}

.logo img {
    width: 100%;          
    height: auto;       
    display: block;      
}

.testo1 {
	width: 100%;   
	 margin: 1.5rem auto 0;
	 text-align: center;
	 font-size: clamp(1rem, 4vw, 1.5rem);
	 line-height: 1.2;
}

.dati-azienda {
	width: 100%;   
	 margin: 1.5rem auto 0;
	 text-align: center;
	 font-size: clamp(1rem, 4vw, 1.5rem);
	 line-height: 1.2;
}

/* --- Desktop Layout (768px and up) --- */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px; */ /* Or whatever standard grid constraint you are using */
  margin: 0 auto;    /* Keeps it centered on wide desktop monitors */
  padding: 2rem 6rem;
  width: 100%;
  background: #000000;
}

.footer-left-column {
  flex: 1;
}

.footer-left-column p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.image-column {
  flex: 1;
}


.image-column img {
    width: 70%;            
    height: auto;           
    display: block;
	 margin: 0 auto; 
}
.nav-item {
	font-family: 'Raleway', serif;
	text-transform: uppercase;
	padding-left: 1rem;
}

.homepage-bg {
    background-image: url('/img/movitec-robot-rosa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 1536px; 
    color: #ffffff;
    display: flex;
	flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	padding-top: 120px;
}

.my-navbar {
  padding-top: 24px;
  padding-bottom: 24px;
  transition: padding 0.4s ease-in-out, background-color 0.4s ease;
}

.my-navbar .navbar-logo {
  height: 50px;
  transition: height 0.4s ease-in-out;
}

.my-navbar.navbar-shrink {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
}

.my-navbar.navbar-shrink .navbar-logo {
  height: 35px; 
}

@media (max-width: 768px) {
    .flex-container {
        flex-direction: column; 
        gap: 20px;              
    }
	
	
  .footer {
    display: flex;
    flex-direction: column; /* Stacks columns vertically on mobile phones */
    gap: 20px;
    
    /* --- THE FULL WIDTH TRICK --- */
    max-width: 100%;       /* Overwrites desktop constraints completely */
    width: 100%;
    padding: 30px 15px;    /* Adds slight padding so text doesn't touch the edges */
  }
}
}