/* 
  Peter Suchý | Fotograf 
  Premium Dark Coming Soon Page
*/

:root {
  --bg-color: #0d0d0d;
  --text-main: #f5f1ea;
  --accent: #c8a96a;
  --accent-hover: #d6b36a;
  --gray-light: rgba(245, 241, 234, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards ease-out;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--accent);
}

.title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-style: italic;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  font-weight: 300;
  margin-bottom: 60px;
}

/* Video Section */
.video-container {
  width: 100%;
  max-width: 1000px; /* Desktop max width */
  margin: 0 auto 60px auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  opacity: 0;
  animation: fadeIn 1.5s 0.3s forwards ease-out;
}

.video-container video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #000;
}

/* Custom Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

/* Contact Section */
.contact-info {
  text-align: center;
  margin: 60px auto 100px;
  max-width: 800px;
  padding: 60px 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards ease-out;
  backdrop-filter: blur(10px);
}

.contact-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.4;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 100px; /* Pill shape for premium feel */
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: var(--transition);
  border: 1px solid rgba(200, 169, 106, 0.3);
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg-color);
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(200, 169, 106, 0.2);
}

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

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

/* Footer */
footer {
  margin-top: auto;
  padding: 60px 0 40px;
  text-align: center;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1s 0.9s forwards ease-out;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.4);
  letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Desktop Styles */
@media (min-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .btn-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .btn {
    min-width: 180px;
  }

  .title {
    margin-bottom: 24px;
  }
  
  .subtitle {
    margin-bottom: 80px;
  }
}

/* Video placeholder/fallback */
.video-fallback {
  padding: 80px 20px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 12px;
  color: var(--gray-light);
}
