/*
Theme Name: Smart Hotel Key
Theme URI: https://smarthotelkey.com/
Author: Ivan
Author URI: https://smarthotelkey.com/
Description: Custom landing-page theme for Smart Hotel Key / FLEXIPASS.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: smarthotelkey
*/

:root {
  --shk-bg: #050816;          /* dark background – adjust to match brand */
  --shk-primary: #3b82f6;     /* primary accent */
  --shk-secondary: #22c55e;   /* secondary accent */
  --shk-text: #f9fafb;
  --shk-muted: #9ca3af;
  --shk-max-width: 1100px;
  --shk-radius: 18px;
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #111827 0, #020617 45%, #000 100%);
  color: var(--shk-text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header + nav */
.site-header {
  padding: 20px 24px 0;
}

.shk-inner {
  max-width: var(--shk-max-width);
  margin: 0 auto;
}

.shk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.shk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shk-logo img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.shk-logo-text {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.shk-nav-menu {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.shk-nav-menu a {
  color: var(--shk-muted);
}

.shk-nav-menu a:hover {
  color: var(--shk-text);
}

/* Hero section */
.shk-hero {
  padding: 40px 24px 60px;
}

.shk-hero-grid {
  max-width: var(--shk-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.shk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--shk-muted);
  margin-bottom: 16px;
}

.shk-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.shk-hero-title {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  line-height: 1.08;
  margin: 0 0 10px;
}

.shk-gradient-text {
  background: linear-gradient(120deg, #3b82f6, #22c55e, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.shk-hero-subtitle {
  font-size: 1.1rem;
  color: var(--shk-muted);
  margin-bottom: 20px;
}

.shk-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: var(--shk-muted);
}

.shk-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.shk-hero-bullets li::before {
  content: "•";
  color: var(--shk-primary);
  margin-top: 2px;
}

/* Store buttons */
.shk-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.shk-store-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
}

.shk-store-btn strong {
  display: block;
  font-size: 0.95rem;
}

.shk-store-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--shk-muted);
}

.shk-store-btn:hover {
  border-color: var(--shk-primary);
}

/* Secondary CTA (e.g., FLEXIPASS link) */
.shk-secondary-cta {
  font-size: 0.85rem;
  color: var(--shk-muted);
  margin-top: 10px;
}

/* Hero mockup */
.shk-hero-mockup-wrap {
  position: relative;
}

.shk-hero-card {
  border-radius: 30px;
  padding: 16px;
  background: radial-gradient(circle at top, #1f2937 0, #020617 65%);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.shk-hero-card img {
  border-radius: 22px;
}

.shk-floating-tag {
  position: absolute;
  bottom: -10px;
  right: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
  color: var(--shk-muted);
}

/* Feature / explainer section */
.shk-section {
  padding: 10px 24px 50px;
}

.shk-section-inner {
  max-width: var(--shk-max-width);
  margin: 0 auto;
}

.shk-section-heading {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.shk-section-text {
  color: var(--shk-muted);
  font-size: 0.95rem;
  max-width: 680px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.75rem;
}

.shk-footer-inner {
  max-width: var(--shk-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.shk-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.shk-footer-links a {
  color: var(--shk-muted);
}

.shk-footer-links a:hover {
  color: var(--shk-text);
}

/* Responsive */
@media (max-width: 768px) {
  .shk-nav-menu {
    display: none; /* keep it super minimal on mobile */
  }

  .shk-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .shk-hero {
    padding-top: 24px;
  }

  .shk-hero-mockup-wrap {
    order: -1;
    margin-bottom: 24px;
  }
}
