/* ================================================
   Central Park Košeca - Styles
   Soft Modern Dark Redesign
   ================================================ */

:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #121212;
  --color-dark: #1a1a1a;

  --color-gold: #D4AF37;
  --color-gold-dark: #b89628;

  --color-white: #ffffff;
  --color-gray: #b0b0b0;
  --color-gray-light: #e0e0e0;

  --color-text-primary: #ffffff;
  --color-text-secondary: #cccccc;

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  /* Utils */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-full: 9999px;
  --radius-lg: 16px;
  --radius-md: 8px;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* === Typography === */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-white);
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-gray);
}

/* Large text for condensed sections - 45% larger with relaxed line-height */
.text-large {
  font-size: 1.45rem;
  line-height: 1.8;
  color: var(--color-gray-light);
}

.label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gray-light);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-gold:hover {
  background: var(--color-gold-dark);
}

.btn-dark {
  background: var(--color-white);
  color: var(--color-bg-primary);
}

/* Full Width Button Variant */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-dark:hover {
  background: var(--color-gold);
}

/* === Decorative Underline === */
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: var(--space-sm) auto;
  border-radius: 2px;
}

/* === Placeholder Styles === */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 2px dashed var(--color-gold);
  border-radius: var(--radius-lg);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--space-md);
}

/* === Header (Sticky Navigation) === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-gold);
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-gold);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: var(--space-md);
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* === Sections === */
.section {
  padding: var(--space-xxl) var(--space-md);
  background: var(--color-bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* === Story Section === */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.story-content .label {
  margin-bottom: var(--space-sm);
  display: block;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.story-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* === SUGO Teaser === */
.sugo-premium-section {
  background: var(--color-bg-secondary);
}

.sugo-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sugo-teaser-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* === Feature Sections (Zig-Zag) === */
.feature-section {
  padding: var(--space-xl) 0;
}

.feature-dark-grey {
  background: var(--color-bg-secondary);
}

.feature-deep-black {
  background: var(--color-bg-primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.feature-grid-reverse .feature-content {
  order: 2;
}

.feature-grid-reverse .feature-image {
  order: 1;
}

.feature-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.feature-image-grid img:first-child {
  grid-column: 1 / -1;
  height: 400px;
  object-fit: cover;
}

.feature-image-grid img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.feature-link {
  color: var(--color-gold);
  font-weight: 700;
  margin-top: var(--space-sm);
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.feature-link:hover {
  border-color: var(--color-gold);
}

/* === Reservation & Footer === */
.reservation-section {
  text-align: center;
  background: var(--color-bg-secondary);
}

.reservation-phone {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.reservation-hours {
  color: var(--color-gray);
}

.footer {
  background: #000;
  padding: var(--space-md);
  text-align: center;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--color-gold);
}

/* === Responsive Design === */
@media (max-width: 900px) {

  /* Navigation */
  .header .btn-dark {
    display: none;
    /* Hide desktop Rezervovať button */
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-link {
    font-size: 1.5rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 100px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 0 var(--space-md);
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Grids & Sections */
  .section {
    padding: var(--space-xl) 0;
  }

  .story-grid,
  .sugo-teaser-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .feature-image-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .feature-image-grid img {
    height: 250px;
  }

  .feature-grid-reverse .feature-content {
    order: 1;
  }

  .feature-grid-reverse .feature-image {
    order: 2;
  }

  /* Contact Items */
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gold-line {
    margin: var(--space-sm) auto !important;
  }

  h2 {
    font-size: 2.22rem;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .header-container {
    padding: 0;
  }

  .logo {
    font-size: 1.5rem;
  }
}