/* css styles */

:root {
  --hoopdeck-navy: #013b4f;
  --hoopdeck-orange: #d2630c;
  --hoopdeck-light-bg: #f8f9fa;
  --hoopdeck-text: #333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--hoopdeck-text);
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(135deg, var(--hoopdeck-navy), #025d7a) !important;
  box-shadow: 0 2px 10px rgba(1,59,79,0.3);
}

.navbar-brand, .nav-link {
  color: white !important;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--hoopdeck-orange) !important;
  text-decoration: underline;
}

.hero {
  background: linear-gradient(135deg, var(--hoopdeck-navy), var(--hoopdeck-orange));
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn-hoopdeck {
  background: var(--hoopdeck-orange);
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hoopdeck:hover {
  background: #b54f0a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(210,99,12,0.4);
}

.card {
  border: none;
  box-shadow: 0 4px 20px rgba(1,59,79,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.section-title {
  color: var(--hoopdeck-navy);
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--hoopdeck-orange);
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
}

.hero h1 { display: none; }  /* Nasconde eventuale title Quarto */
.card h2 { 
  color: var(--hoopdeck-navy); 
  margin-bottom: 1.5rem; 
}
.card p strong { 
  color: var(--hoopdeck-orange); 
}

