:root {
  /* Light theme colors from the Shokken app */
  --primary: #F2B134;           /* Golden Yellow */
  --on-primary: #402D16;        /* Dark Brown */
  --primary-container: #FFD88A; /* Lighter Yellow */
  --secondary: #E87F4F;         /* Terra Cotta Orange */
  --tertiary: #75B798;          /* Mint Green */
  --background: #f7f4ee;        /* Cream */
  --surface: #FEFBF5;           /* Light, warm off-white */
  --on-surface: #5E5343;        /* Medium Brown */
  --surface-variant: #E8DBC7;   /* Darker Cream */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background);
  color: var(--on-surface);
}

.main {
  background-color: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header styling */
.header {
  background-color: var(--surface);
  transition: all 0.3s ease;
  z-index: 1000;
}

.header .navbar {
  padding: 0.5rem 0;
}

.header .navbar-brand {
  display: flex;
  align-items: center;
}

.header .navbar-nav-container {
  display: flex;
  align-items: center;
}

.header .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Fix spacing for dropdown toggle */
.header .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

.header.sticky-top {
  background-color: var(--surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
}

.header .nav-item.dropdown {
  position: relative;
}

.nav-link, .nav-link:visited {
  color: var(--on-surface);
  font-weight: 500;
}

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

/* Logo */
.logo-img {
  max-height: 80px;
  margin-right: 10px;
}

/* Buttons */
.button-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 12px 24px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button-primary:hover {
  background-color: var(--primary-container);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-secondary {
  background-color: var(--secondary);
  color: white;
  padding: 12px 24px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button-secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section styling */
.section {
  padding: 80px 0;
}

.section-title {
  color: var(--on-primary);
  margin-bottom: 40px;
  font-weight: 600;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 100px 0 80px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--on-primary);
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--on-surface);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--on-surface);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features section */
.features {
  background-color: var(--surface-variant);
  padding: 80px 0;
}

.feature-card {
  background-color: var(--surface);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.feature-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.feature-list li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Screenshots carousel */
.screenshots {
  background-color: var(--background);
  padding: 80px 0;
}

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

/* Pricing section */
.pricing {
  background-color: var(--surface);
  padding: 80px 0;
}

.pricing-card {
  background-color: var(--surface-variant);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-title {
  font-size: 1.5rem;
  color: var(--on-primary);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.pricing-feature {
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.pricing-feature i {
  color: var(--primary);
  margin-right: 8px;
}

/* FAQ section */
.faq {
  background-color: var(--background);
  padding: 80px 0;
}

.faq-category {
  color: var(--on-primary);
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--on-primary);
  cursor: pointer;
}

.faq-answer {
  color: var(--on-surface);
}

/* Contact/About Us section */
.contact {
  background-color: var(--surface);
  padding: 80px 0;
}

.about-content {
  background-color: var(--surface);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background-color: var(--surface-variant);
  padding: 0;
  color: var(--on-surface);
}

.footer h5 {
  font-weight: 600;
  color: var(--on-primary);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--on-surface);
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--primary);
  text-decoration: none;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  font-size: 1.2rem;
  margin: 0 8px;
  color: var(--on-surface);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.footer hr {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Download buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.download-button {
  display: flex;
  align-items: center;
  background-color: var(--on-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.download-button img {
  height: 24px;
  margin-right: 12px;
  color: white;
  fill: white;
}

.download-button svg {
  height: 24px;
  margin-right: 12px;
  color: white;
  fill: white;
}

/* Fix for SVG icons in dark backgrounds */
.download-button img,
.download-button svg,
.dropdown-item img[src*="apple-icon.svg"],
.dropdown-item img[src*="linux-icon.svg"],
.dropdown-item img[src*="macos-icon.svg"] {
  filter: brightness(0) invert(1);
}

/* Ensure Linux icon is extra visible */
.download-button img[src*="linux-icon.svg"] {
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255, 255, 255, 0.7));
}

/* Ensure dropdown items are visible */
.dropdown-menu {
  z-index: 1050;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: var(--on-surface);
}

.dropdown-item:hover {
  background-color: var(--surface-variant);
}

/* Download tabs */
.download-tabs {
  margin: 32px 0;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid var(--surface-variant);
  margin-bottom: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.tab-button {
  background-color: transparent;
  color: var(--on-surface);
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

.tab-button:hover {
  color: var(--primary);
}

.tab-button.active {
  color: var(--primary);
  font-weight: 600;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

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

/* Media query updates for tabs */
@media (max-width: 768px) {
  .tab-buttons {
    max-width: 300px;
  }
  
  .tab-button {
    padding: 8px 12px;
    margin: 0 2px;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Warning Banner */
.warning-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFC107;
  color: #212529;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  z-index: 2000;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

/* Update button-primary when used in navbar */
.navbar .button-primary {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
}

.navbar .button-primary.dropdown-toggle {
  /* Remove padding-right override */
}

.navbar .button-primary.dropdown-toggle::after {
  /* Remove absolute positioning */
  margin-left: 8px; /* Add space between text and caret */
} 