/* =====================================================================
   Spuma Activa VICE - Pagina de Contact
   Tema: TikTok-style (dark, pink/cyan accent), fonturi prietenoase 40+
===================================================================== */
:root {
  --bg: #0E0E10;
  --bg-card: #1B1B1F;
  --bg-card-2: #232328;
  --pink: #FE2C55;
  --pink-dark: #D6183F;
  --cyan: #25F4EE;
  --text: #FAFAFA;
  --text-muted: #B9B9C2;
  --yellow: #FFC531;
  --green: #25D366;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-card: 0 8px 24px rgba(0,0,0,0.35);
}

* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 18px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 12px;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  max-width: 100%; 
  display: block; 
}

/* ---------------------------------------------------------------------
   HEADER
--------------------------------------------------------------------- */
.site-header {
  background: #000;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #232328;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-trust {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

/* Setările de bază pentru Laptop / Desktop */
.site-header .logo {
    width: 200px; 
    max-width: 100%;
    height: auto;
    flex-shrink: 0; 
}

/* Ajustări specifice pentru Telefon */
@media (max-width: 768px) {
    .site-header .logo {
        width: 120px; 
        min-width: 100px; 
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
}

/* ---------------------------------------------------------------------
   PAGINA CONTACT (Structură & Carduri)
--------------------------------------------------------------------- */
main {
    flex: 1; /* Împinge footer-ul jos dacă ecranul este mare */
    padding: 40px 0;
}

.order-box {
  background: var(--bg-card);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.hero__title {
  font-size: 30px;
  color: var(--text);
  margin-bottom: 5px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 16.5px;
  margin: 0 auto 24px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card-2);
    border: 1.5px solid #34343B;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    background: var(--bg-card);
}

/* Accente de culoare pe hover pentru fiecare tip de card */
.contact-card.phone:hover { border-color: var(--cyan); }
.contact-card.whatsapp:hover { border-color: var(--green); }
.contact-card.email:hover { border-color: var(--pink); }

.contact-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-details {
    text-align: left;
}

.contact-label {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

/* Culori distincte pentru fiecare metodă de contact */
.contact-card.phone .contact-value { color: var(--cyan); }
.contact-card.whatsapp .contact-value { color: var(--green); }
.contact-card.email .contact-value { color: var(--pink); }

/* Responsive - Desktop/Tablete */
@media (min-width: 700px) {
  .hero__title { font-size: 36px; }
  .contact-card { padding: 20px 24px; }
}