/* Van Gogh Tickets - Main Stylesheet */
/* Modern, clean design with Van Gogh inspired colors */

:root {
  /* Color Palette - Van Gogh inspired */
  --primary-yellow: #F7B538;
  --primary-blue: #2C5F8D;
  --dark-blue: #1A3A5C;
  --accent-orange: #E87D3E;
  --warm-cream: #FDF8E8;
  --text-dark: #2D2D2D;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --light-gray: #F3F4F6;
  --border-gray: #E5E7EB;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.7;
  background-color: var(--white);
}

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

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-blue);
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo:hover {
  color: var(--primary-blue);
}

/* Navigation */
.nav-main {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: var(--transition);
}

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

/* Language Selector */
.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--light-gray);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.language-btn:hover {
  background: var(--border-gray);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}

.language-selector:hover .language-dropdown,
.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.language-dropdown a:hover {
  background: var(--light-gray);
}

.language-dropdown a.active {
  background: var(--warm-cream);
  font-weight: 600;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--dark-blue);
}

.btn-primary:hover {
  background: #e5a530;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 181, 56, 0.4);
  color: var(--dark-blue);
}

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

.btn-secondary:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark-blue);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(247, 181, 56, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(247, 181, 56, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-feature svg {
  color: var(--primary-yellow);
  flex-shrink: 0;
}

/* Hero Widget */
.hero-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.hero-widget h3 {
  margin-bottom: 20px;
  text-align: center;
}

.widget-container {
  min-height: 200px;
}

/* Disclaimer Tooltip */
.disclaimer-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: help;
  margin-top: 15px;
}

.disclaimer-tooltip svg {
  width: 14px;
  height: 14px;
}

.disclaimer-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-blue);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  line-height: 1.5;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-bottom: 8px;
  z-index: 10;
}

.disclaimer-tooltip:hover .disclaimer-content {
  opacity: 1;
  visibility: visible;
}

/* Quick Summary Box */
.quick-summary {
  background: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 40px 0;
}

.quick-summary h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.summary-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
}

.pricing-table th {
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: var(--warm-cream);
}

.price-highlight {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.price-free {
  color: #10B981;
  font-weight: 600;
}

/* Info Boxes */
.info-box {
  padding: 25px;
  border-radius: var(--border-radius);
  margin: 20px 0;
}

.info-box-tip {
  background: rgba(247, 181, 56, 0.15);
  border-left: 4px solid var(--primary-yellow);
}

.info-box-warning {
  background: rgba(232, 125, 62, 0.15);
  border-left: 4px solid var(--accent-orange);
}

.info-box-info {
  background: rgba(44, 95, 141, 0.1);
  border-left: 4px solid var(--primary-blue);
}

.info-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 1rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.two-col-reverse {
  direction: rtl;
}

.two-col-reverse > * {
  direction: ltr;
}

/* Content Lists */
.content-list {
  margin: 20px 0;
}

.content-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: bold;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--warm-cream);
}

.faq-question svg {
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid var(--border-gray);
}

.comparison-table th {
  background: var(--dark-blue);
  color: var(--white);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table .check {
  color: #10B981;
  font-size: 1.25rem;
}

.comparison-table .cross {
  color: #EF4444;
  font-size: 1.25rem;
}

.comparison-highlight {
  background: var(--warm-cream);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--primary-yellow);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-blue);
}

.testimonial-info strong {
  display: block;
  color: var(--dark-blue);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.9);
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 120px 0 20px;
  background: var(--light-gray);
}

.breadcrumbs-list {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumbs-list a {
  color: var(--text-muted);
}

.breadcrumbs-list span {
  color: var(--text-muted);
}

.breadcrumbs-list strong {
  color: var(--dark-blue);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
  padding: 40px 0 60px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  margin-bottom: 25px;
}

.content-section p {
  max-width: 800px;
}

/* Article Content */
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-yellow);
}

.article-content h3 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-content ul li {
  list-style-type: disc;
}

.article-content ol li {
  list-style-type: decimal;
}

/* Table of Contents */
.toc {
  background: var(--light-gray);
  padding: 25px 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.toc h4 {
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.toc ul {
  padding-left: 0;
}

.toc li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-gray);
}

.toc li:last-child {
  border-bottom: none;
}

.toc a {
  color: var(--primary-blue);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-widget {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-main {
    gap: 15px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .hero-widget {
    padding: 20px;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 80px 20px 30px;
  flex-direction: column;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-links a {
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-blue);
  border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark-blue);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

/* Image with caption */
.image-block {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.image-block img {
  width: 100%;
}

.image-block figcaption {
  padding: 12px 15px;
  background: var(--light-gray);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Sticky sidebar */
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta-section,
  .hero-widget {
    display: none;
  }
  
  .hero {
    padding: 20px 0;
  }
}
