:root {
  --color-primary: #FFA519;
  --color-secondary: #FF6E1E;
  --color-accent: #FF3723;
  --color-dark: #25004D;
  --color-light: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.05);
  --footer-bg: #1f003f;
  --footer-text: #EAEAEA;
  --footer-link-hover: #FFA519;
  --navbar-height: 56px;
}

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

body {
  background-color: var(--color-dark);
  color: var(--color-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}


/* ===== FOOTER RESPONSIVE ===== */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  width: 100%;
  margin: 0;
}

/* Container interno */
.site-footer .container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout a tre colonne */
.site-footer .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.site-footer .col-md-4 {
  flex: 1;
  min-width: 250px;
}

/* Titoli delle sezioni */
.site-footer .footer-title {
  color: var(--footer-text);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Testo del footer */
.site-footer .footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Link del footer */
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0.75rem;
}

.site-footer .footer-link {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
  color: var(--footer-link-hover);
}

/* Sezione social */
.site-footer .footer-social {
  margin-top: 1.5rem;
}

.site-footer .social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--footer-text);
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.site-footer .social-icon:hover {
  background-color: var(--footer-link-hover);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Copyright */
.site-footer .small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .site-footer .row {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .site-footer .container-fluid {
    padding: 0 1rem;
  }

  .site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .site-footer .footer-links li {
    margin: 0;
  }

  .site-footer .social-icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-right: 0.5rem;
  }

  .site-footer .small {
    font-size: 0.7rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.btn.btn-primary {
  background-color: #FFA519;
  color: #25004D;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #e29010;
  color: #ffffff;
}