/* ============================
   TEMA PREMIUM ITALIANCLICK — DEFINITIVO
============================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --nero: #0e0e0e;
  --oro: #d4af37;
  --crema: #f5f1e8;
  --crema-scuro: #e8dfc9;
  --pietra: #1a1a1a;

  --bianco: #ffffff;
  --nero-puro: #000000;
}

/* ============================
   BASE
============================ */

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--nero);
  color: var(--crema);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--oro);
  text-decoration: none;
  transition: 0.25s;
}
a:hover { color: var(--crema); }

/* ============================
   HEADER
============================ */

.ic-header {
  background: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}

/* ============================
   HERO HOME
============================ */

.ic-hero-home {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.ic-hero-home video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05);
}

.ic-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.ic-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.ic-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--crema);
  text-shadow: 0 3px 14px rgba(0,0,0,0.5);
}

/* ============================
   SEZIONI GENERALI
============================ */

.ic-section {
  padding: 60px 20px;
  text-align: center;
}

.ic-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--oro);
  margin-bottom: 20px;
}

/* ============================
   CARDS HOME
============================ */

.ic-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.ic-card {
  background: #0a0a0a;
  border: 1px solid var(--oro);
  border-radius: 14px;
  padding: 14px;
  color: var(--crema);
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.ic-card:hover {
  transform: scale(1.03);
  border-color: #ffdf6e;
}

.ic-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.ic-card h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: var(--oro);
}

.ic-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--crema-scuro);
}

/* ============================
   BOTTONI REGIONI
============================ */

.ic-region-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ic-btn-region {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 45px;
  border: 2px solid var(--oro);
  border-radius: 6px;
  color: var(--oro);
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

.ic-btn-region:hover {
  background-color: var(--oro);
  color: #000;
  transform: scale(1.05);
}

/* ============================
   BOTTONI PROVINCE
============================ */

.ic-province-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.ic-btn-provincia {
  background-color: #111;
  border: 2px solid var(--oro);
  color: var(--oro);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.ic-btn-provincia:hover {
  background-color: var(--oro);
  color: #111;
}

/* ============================
   VETRINE PARTNER
============================ */

.ic-vetrine-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}

.ic-vetrina-card {
  background-color: #111;
  border: 2px solid var(--oro);
  color: var(--oro);
  width: 400px;
  height: 250px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.ic-vetrina-card:hover {
  background-color: var(--oro);
  color: #111;
}

.ic-vetrina-note {
  text-align: center;
  color: var(--crema-scuro);
  margin-top: 10px;
  font-size: 0.95rem;
}

/* ============================
   BOTTONI NAVIGAZIONE
============================ */

.ic-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.ic-btn-nav {
  background-color: #111;
  border: 2px solid var(--oro);
  color: var(--oro);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.ic-btn-nav:hover {
  background-color: var(--oro);
  color: #111;
}

/* ============================
   FOOTER PREMIUM
============================ */

.ic-footer {
  background-color: #000;
  color: var(--oro);
  padding: 40px 20px 25px;
  border-top: 2px solid var(--oro);
  font-family: "Inter", sans-serif;
}

.ic-footer-bottom {
  font-size: 14px;
  border-top: 1px solid var(--oro);
  padding-top: 10px;
  opacity: 0.8;
  text-align: center;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
  .ic-footer-content {
    flex-direction: column;
    gap: 25px;
  }
}
.ic-footer {
  background-color: #000;
  color: var(--oro);
  padding: 40px 20px 25px;
  border-top: 2px solid var(--oro);
  font-family: "Inter", sans-serif;
}

.ic-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.ic-footer-section {
  flex: 1;
  min-width: 220px;
}

.ic-footer-left {
  text-align: left;
}

.ic-footer-center {
  text-align: center;
}

.ic-footer-right {
  text-align: right;
}

.ic-footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--oro);
}

.ic-footer-section a {
  color: var(--oro);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ic-footer-section a:hover {
  color: #fff;
}

.ic-footer-center img {
  width: 200px;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px var(--oro));
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ic-footer-center img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.ic-footer-bottom {
  font-size: 14px;
  border-top: 1px solid var(--oro);
  padding-top: 10px;
  opacity: 0.8;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .ic-footer-content {
    flex-direction: column;
    text-align: center;
  }

  .ic-footer-left,
  .ic-footer-right {
    text-align: center;
  }

  .ic-footer-center img {
    width: 160px;
  }
}
