/* Footer Styles */
.footer {
  background: #0b0b0c;
  color: white;
  padding: 40px 30px 10px;
  font-size:1.25rem;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
  padding-left:150px;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 240px;
  font-family: "Cinzel", serif;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left .logo-footer {
  height:250px;
  width:300;
  margin-left: -80px;
  margin-bottom:-20px;
margin-top:-30px;  
  
}


.footer-left h3 {
  color: #ff5f2e;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 4px;
}

.footer-middle h4,
.footer-right h4 {
  color: #ff5f2e;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-family: "Cinzel", serif;
  transition: color 0.3s ease;
  font-size: 1.25rem;
}

.footer-links a:hover {
  color: #ff5f2e;
}

.footer-right p {
  margin: 6px 0;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 1rem;
  font-family: "Cinzel", serif;
  letter-spacing: 1.5px;
  border-top: 1px solid #333;
  margin-top: 20px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    align-items: center;
    text-align: center;
    flex: unset;
    width: 100%;
  }

  .footer-left .logo-footer {
    height: 120px;
    margin: 0 auto 15px;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    font-size: 1rem;
    display: block;
  }

  .footer-right p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.95rem;
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    font-size: 0.95rem;
    padding: 25px 10px 8px;
  }

  .footer-left .logo-footer {
    height: 90px;
  }

  .footer-middle h4,
  .footer-right h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}