/* ===== BRUNO RESTAURANT FOOTER STYLES ===== */

/* Footer Main Section */
.footer-section {
  background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #2c1810 100%);
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,15 Q25,5 50,15 T100,15 L100,20 L0,20 Z" fill="%23a94d4d" fill-opacity="0.05"/></svg>') repeat-x bottom;
  background-size: 200px 20px;
  opacity: 0.6;
  pointer-events: none;
}

/* Footer Brand Section */
.footer-brand-section {
  text-align: center;
}

.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(169, 77, 77, 0.3);
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 20px rgba(169, 77, 77, 0.4);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c0c0;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-brand-desc {
  color: #d4b5a7;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Footer Section Titles */
.footer-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0c0c0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(45deg, #a94d4d, #c96b6b);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d4b5a7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 20px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(169, 77, 77, 0.2);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.9rem;
  color: #a94d4d;
}

/* Footer Contact Section */
.footer-contact-section {
  text-align: center;
}

.footer-contact-info {
  margin-bottom: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  background: rgba(169, 77, 77, 0.1);
  transform: translateY(-2px);
}

.footer-contact-item i {
  font-size: 1.1rem;
  color: #a94d4d;
  margin-top: 2px;
  min-width: 18px;
}

.footer-contact-item div {
  flex: 1;
  text-align: left;
}

.footer-contact-item strong {
  display: block;
  color: #f0c0c0;
  font-size: 0.9rem;
  margin-bottom: 3px;
  font-weight: 600;
}

.footer-contact-item span {
  color: #d4b5a7;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Social Media Links */
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(169, 77, 77, 0.2);
  border-radius: 50%;
  color: #d4b5a7;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a94d4d, #c96b6b);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(169, 77, 77, 0.4);
}

.footer-social-link i {
  position: relative;
  z-index: 2;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(169, 77, 77, 0.3);
  padding-top: 25px;
  margin-top: 40px;
}

.footer-copyright,
.footer-developer {
  color: #a0836b;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

.heart {
  color: #a94d4d;
  animation: heartbeat 2s infinite;
  font-size: 1rem;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.4s ease;
  animation: whatsappPulse 4s infinite;
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7); 
  }
  50% { 
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0); 
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  
  .footer-section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .footer-brand-name {
    font-size: 1.3rem;
  }
  
  .footer-brand-desc {
    font-size: 0.85rem;
  }
  
  .footer-contact-item {
    padding: 8px;
  }
  
  .footer-social-links {
    gap: 12px;
  }
  
  .footer-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
  
  .footer-bottom {
    padding-top: 20px;
    margin-top: 30px;
  }
  
  .footer-copyright,
  .footer-developer {
    font-size: 0.8rem;
    text-align: center !important;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 35px 0 15px;
  }
  
  .footer-logo {
    width: 50px;
    height: 50px;
  }
  
  .footer-brand-name {
    font-size: 1.2rem;
  }
  
  .footer-section-title {
    font-size: 1.1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  
  .footer-contact-item div {
    text-align: center;
  }
  
  .footer-social-links {
    gap: 10px;
  }
  
  .footer-social-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
} 