/* style.css - Scent Selection DARK THEME, barátságos, enyhe animációkkal */

:root {
  --primary: #d4a574;
  --primary-dark: #a87d4a;
  --primary-light: #e8dcc8;
  --bg-dark: #0f1115;
  --bg-darker: #050609;
  --bg-card: #181b22;
  --bg-card-light: #202430;
  --text-light: #f5f5f7;
  --text-muted: #a0a4b0;
  --border-dark: #2b303b;
  --accent-gold: #d4a574;
  --accent-warm: #3a2c23;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY + HÁTTÉR ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, #1b1f29 0%, #050609 55%, #040305 100%);
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Enyhe háttér-motívum */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 165, 116, 0.18) 0, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(88, 101, 242, 0.18) 0, transparent 50%);
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
}

/* Finom grain pattern */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cdefs%3E%3CradialGradient id='g' cx='0' cy='0' r='1'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0.18'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='160' height='160' fill='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.15;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

/* ===== HEADER ===== */
header {
  background: rgba(7, 9, 13, 0.92);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 165, 116, 0.4);
  backdrop-filter: blur(18px);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo-container:hover {
  transform: translateY(-1px) scale(1.02);
  opacity: 0.98;
}

.logo-container img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fefefe 0%, var(--accent-gold) 45%, #fefefe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* NAV */
nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a:hover {
  color: #fefefe;
  border-bottom-color: var(--accent-gold);
}

/* ===== HERO ===== */
.hero {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 52px 24px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.85) 0%,
    rgba(18, 21, 30, 0.92) 55%,
    rgba(26, 21, 25, 0.9) 100%
  );
  border-radius: 24px;
  border: 1px solid rgba(212, 165, 116, 0.4);
  position: relative;
  overflow: hidden;
}

/* finom belső motívum */
.hero::before {
  content: '';
  position: absolute;
  inset: -40%;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(212, 165, 116, 0.16) 0, transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(88, 101, 242, 0.2) 0, transparent 55%);
  opacity: 0.7;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fefefe;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f6e3c6 45%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 28px;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-dark) 100%);
  color: #0b0c10;
  padding: 13px 38px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  filter: brightness(1.05);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 20px;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fefefe 0%, var(--accent-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

/* ===== CARD ===== */
.card {
  background: radial-gradient(circle at top left, #252b39 0, #151823 55%, #111217 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.78);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border: 1px solid rgba(212, 165, 116, 0.3);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.9);
  border-color: rgba(212, 165, 116, 0.6);
}

.card-img {
  width: 100%;
  height: 230px;
  background: radial-gradient(circle at center, #31384a 0, #171923 60%, #101119 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    135deg,
    transparent 0%,
    rgba(212, 165, 116, 0.06) 35%,
    transparent 70%
  );
  opacity: 0.7;
}

.card-img img {
  height: 100%;
  width: auto;
  object-fit: contain;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #f6e3c6 100%);
  color: #14151b;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.7);
}

.card-body {
  padding: 18px 18px 20px;
}

.card-brand {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 6px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 9px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.card-sizes {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 14px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.09);
  border-left: 3px solid var(--accent-gold);
}

.card-btn-group {
  display: flex;
  gap: 10px;
}

.card-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-dark) 100%);
  color: #111217;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.7);
}

.card-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.card-btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(212, 165, 116, 0.35);
}

.card-btn-secondary:hover {
  color: var(--accent-gold);
  background: rgba(212, 165, 116, 0.08);
}

/* ===== INFO SECTION (Hogyan működik / Miért mi) ===== */
.info-section {
  background: linear-gradient(
    135deg,
    rgba(14, 18, 26, 0.9) 0%,
    rgba(16, 19, 27, 0.92) 60%,
    rgba(19, 17, 25, 0.95) 100%
  );
  border-radius: 22px;
  padding: 32px 22px 30px;
  border: 1px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: -40%;
  background-image:
    radial-gradient(circle at 0 20%, rgba(212, 165, 116, 0.14) 0, transparent 55%),
    radial-gradient(circle at 100% 80%, rgba(88, 101, 242, 0.18) 0, transparent 55%);
  opacity: 0.4;
}

.info-section > * {
  position: relative;
  z-index: 1;
}

.info-grid {
  margin-top: 24px;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  margin-top: 50px;
  padding: 40px 20px 34px;
  border-top: 1px solid rgba(212, 165, 116, 0.35);
  border-bottom: 1px solid rgba(212, 165, 116, 0.35);
  position: relative;
  background: radial-gradient(circle at top, rgba(88, 101, 242, 0.14) 0, transparent 50%),
              radial-gradient(circle at bottom, rgba(212, 165, 116, 0.18) 0, transparent 55%);
}

.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(212, 165, 116, 0.05) 50%, transparent 52%);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}

.social-section > * {
  position: relative;
  z-index: 1;
}

.social-section .container {
  position: relative;
  z-index: 1;
}

.social-section .section-title {
  background: linear-gradient(135deg, #fefefe 0%, var(--accent-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-section .section-subtitle {
  color: var(--text-muted);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 24px;
}

/* JAVÍTOTT DARK THEME KÁRTYÁK */
.social-card {
  background: radial-gradient(circle at top left, #1a1f2e 0, #0f1318 60%, #0a0d12 100%);
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 18px;
  padding: 24px 20px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.92);
  border-color: rgba(212, 165, 116, 0.7);
}

.social-icon {
  height: 56px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}

.social-card h3 {
  color: #fefefe;
  margin: 8px 0;
  font-size: 16px;
  font-weight: 700;
}

.social-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 6px 0;
}

.social-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-dark) 100%);
  color: #0b0c10;
  padding: 9px 22px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.9);
}

.social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
}

.social-link-tiktok {
  background: linear-gradient(135deg, #111111 0%, #272727 100%);
  color: #fefefe;
}

/* ===== IG INLINE ICON ===== */
.ig-logo {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 3px;
  vertical-align: middle;
}

.ig-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #050609 0%, #0b0d12 50%, #050609 100%);
  padding: 26px 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid rgba(212, 165, 116, 0.35);
  margin-top: 50px;
}

footer a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease, text-decoration 0.18s ease;
}

footer a:hover {
  color: #fefefe;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  nav {
    gap: 14px;
  }

  .hero {
    padding: 36px 18px;
    margin: 40px 12px 28px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .logo-container img {
    height: 42px;
    width: 42px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .info-section {
    padding: 26px 18px 22px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}
