/* New Footer Component Styles - Completely Independent */

.new-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.new-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.new-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.new-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new-footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.new-footer-subtitle {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.new-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new-footer-section-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.new-footer-contact-item {
  margin-bottom: 4px;
}

.new-footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.new-footer-link:hover {
  opacity: 0.8;
}

.new-footer-address {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 6px;
}

.new-footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.new-footer-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.new-footer-input {
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
  color: #000000;
}

.new-footer-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #aa1826;
}

.new-footer-submit {
  background-color: #aa1826;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
}

.new-footer-submit:hover {
  background-color: #8b141f;
}

.new-footer-divider {
  height: 1px;
  background-color: #333333;
  margin: 40px 0 30px;
}

.new-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.new-footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.new-footer-text {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.4;
}

.new-footer-admin-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  transition: opacity 0.3s ease;
}

.new-footer-admin-link:hover {
  opacity: 0.8;
}

/* Semi-visible admin login link */
.new-footer-admin-subtle {
  color: #999999;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border: 1px solid #444444;
  border-radius: 4px;
  transition: all 0.3s ease;
  align-self: flex-end;
}

.new-footer-admin-subtle:hover {
  color: #ffffff;
  border-color: #666666;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .new-footer {
    padding: 60px 0 30px;
  }
  
  .new-footer-container {
    padding: 0 20px;
  }
  
  .new-footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .new-footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .new-footer {
    padding: 50px 0 25px;
  }
  
  .new-footer-container {
    padding: 0 15px;
  }
  
  .new-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .new-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .new-footer {
    padding: 40px 0 20px;
  }
  
  .new-footer-container {
    padding: 0 10px;
  }
  
  .new-footer-content {
    gap: 25px;
  }
  
  .new-footer-logo {
    width: 120px;
  }
} 