:root {
  --primary-color: #2c3e50; /* Blu scuro/petrolio - professionale */
  --secondary-color: #95a5a6; /* Grigio medio - neutro */
  --accent-color: #458033; /* Verde originale - mantenuto */
  --dark-color: #1a252f; /* Quasi nero - per sfondi scuri */
  --light-color: #ecf0f1; /* Bianco sporco - per sfondi chiari */
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #e67211;
  border-color: #e67211;
  color: white;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/img/hero-section-background.png") center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.feature-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  background-color: var(--primary-color);
  color: white;
}

.service-card:hover .service-icon {
  color: white;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 15px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.custom-build-section {
  background-color: var(--light-color);
  padding: 80px 0;
}

.gaming-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("/assets/img/gaming-section-background.jpg") center/cover no-repeat;
  color: white;
  padding: 100px 0;
}

.gaming-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.contact-section {
  background-color: var(--light-color);
  padding: 80px 0;
}

.contact-info {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 30px;
}

.social-icon {
  font-size: 1.5rem;
  color: white;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--accent-color);
}

.navbar {
  transition: all 0.3s;
}

.navbar.scrolled {
  background-color: rgba(33, 37, 41, 0.98) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
}

.brand-highlight {
  color: var(--accent-color);
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  min-width: 60px;
  min-height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }
}

.prompt-section {
  /* background-color: #000; */
  color: #0f0;
  font-family: monospace;
  padding: 20px;
  white-space: nowrap;
}

#prompt {
  display: inline;
}
#cursor {
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #0f0;
  animation: blink 1s infinite;
  vertical-align: bottom;
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
