/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --background: hsl(210, 20%, 8%);
  --foreground: hsl(210, 20%, 98%);
  --card: hsl(210, 20%, 12%);
  --card-foreground: hsl(210, 20%, 98%);
  --popover: hsl(210, 20%, 12%);
  --popover-foreground: hsl(210, 20%, 98%);
  --primary: hsl(25, 95%, 53%);
  --primary-foreground: hsl(210, 20%, 98%);
  --secondary: hsl(210, 20%, 18%);
  --secondary-foreground: hsl(210, 20%, 98%);
  --muted: hsl(210, 20%, 20%);
  --muted-foreground: hsl(210, 20%, 60%);
  --accent: hsl(210, 20%, 25%);
  --accent-foreground: hsl(210, 20%, 98%);
  --destructive: hsl(0, 62%, 30%);
  --destructive-foreground: hsl(210, 20%, 98%);
  --border: hsl(210, 20%, 25%);
  --input: hsl(210, 20%, 25%);
  --ring: hsl(25, 95%, 53%);
  --radius: 0.75rem;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: Menlo, monospace;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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

/* Mobile-first responsive container */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

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

.hidden {
  display: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: var(--card);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background-color: var(--card) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: capitalize;
  font-size: 1rem;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:active {
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  text-transform: capitalize;
  font-size: 1.125rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--primary);
  background-color: rgba(255, 139, 69, 0.1);
  border-radius: 0.375rem;
  padding-left: 0.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-container {
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1.25rem;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Mobile typography */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
}

.payment-info {
  background-color: rgba(var(--card), 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin: 0 0.5rem;
}

@media (max-width: 480px) {
  .payment-info {
    margin: 0;
    padding: 1.25rem;
  }
}

.payment-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.payment-footer {
  font-size: 1.125rem;
  font-weight: 600;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 480px) {
  .stats-row {
    gap: 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0.5rem;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .stats-row {
    gap: 1rem;
  }
}

.stats-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 480px) {
  .stats-card {
    padding: 0.75rem 0.5rem;
    min-height: auto;
  }
}

@media (max-width: 360px) {
  .stats-card {
    padding: 0.65rem 0.4rem;
  }
  
  .stats-row {
    gap: 0.5rem;
    margin: 0 0.25rem;
  }
}

.stats-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.stats-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.stats-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 480px) {
  .stats-number {
    font-size: 1.25rem;
  }
  
  .stats-label {
    font-size: 0.75rem;
  }
  
  .stats-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 0.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem;
}

@media (max-width: 480px) {
  .hero-buttons {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    gap: 0.75rem;
  }
}

.hero-image {
  position: relative;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

.image-container {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile button improvements */
@media (max-width: 768px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    width: 100%;
    max-width: none;
  }
}

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

.btn-primary:hover {
  background-color: hsl(25, 95%, 48%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 139, 69, 0.3);
}

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

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

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

/* Mobile section typography */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Membership Section */
.membership-section {
  padding: 5rem 0;
}

.contact-info {
  margin-top: 1.5rem;
  text-align: center;
}

.contact-title {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 7xl;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .membership-grid {
    gap: 1.5rem;
  }
}

.membership-tier {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.membership-tier:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.membership-tier.featured {
  border-color: var(--primary);
}

.membership-tier.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tier-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .tier-content {
    padding: 1.75rem;
  }
}

.tier-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.tier-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
}

.tier-icon.bronze { color: #cd7f32; }
.tier-icon.silver { color: #c0c0c0; }
.tier-icon.gold { color: #ffd700; }
.tier-icon.diamond { color: #b9f2ff; }
.tier-icon.ruby { color: #e0115f; }
.tier-icon.platinum { color: #e5e4e2; }

.tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tier-description {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(var(--muted), 0.3);
  border-radius: 0.375rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

.tier-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-check {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.join-btn {
  width: 100%;
}

/* Requests Section */
.requests-section {
  padding: 5rem 0;
}

.requests-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.requests-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.requests-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 0.75rem;
  flex-shrink: 0;
  color: var(--primary-foreground);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.requests-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requests-image {
  position: relative;
}

@media (max-width: 768px) {
  .requests-image {
    display: none;
  }
}

.requests-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.image-overlay-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-icon {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: var(--primary-foreground);
}

.overlay-icon i {
  width: 3rem;
  height: 3rem;
}

/* Tutorials Section */
.tutorials-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.tutorials-content {
  max-width: 6xl;
  margin: 0 auto;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.instructions-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.instructions-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.instructions-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.download-btn:hover,
.download-btn:active {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

@media (max-width: 768px) {
  .download-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    min-height: 48px;
    justify-content: center;
  }
}

.download-icon {
  width: 1rem;
  height: 1rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.video-side {
  display: flex;
  flex-direction: column;
}

.video-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.video-container {
  aspect-ratio: 9/16;
  background: rgba(var(--muted), 0.1);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.tutorial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  background: var(--background);
}

.tutorials-footer {
  text-align: center;
}

.footer-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.faq-container {
  max-width: 4xl;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover,
.faq-question:active {
  background-color: rgba(var(--muted), 0.5);
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem;
    min-height: 48px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  padding-right: 1rem;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--card);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 1rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: flex-start; /* Moves logo slightly higher */
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-top: -0.2rem; /* fine-tune vertical position */
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.5;
  text-align: left; /* Keep description left-aligned */
  max-width: 400px; /* Optional width limit */
}

.footer-kofi {
  display: flex;
  align-items: center; /* Vertically align Ko-fi text and button */
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.kofi-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kofi-link:hover {
  color: hsl(25, 95%, 48%);
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  border: none;
  background-color: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Social section */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

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

.social-btn i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Footer link sections */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section-title {
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

/* Footer contact info */
.footer-contact-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact-btn {
  align-self: flex-start;
}

/* Footer bottom section */
.footer-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: var(--muted-foreground);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 0.75rem;
  }
  
  .footer-grid {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-kofi {
    flex-direction: column;
    align-items: flex-start; /* Keep left alignment on mobile */
  }
  
  .footer-contact-btn {
    width: 100%;
    max-width: 200px;
  }
  
  .footer-bottom {
    gap: 0.5rem;
  }
}


/* Enhanced Mobile-First Responsive Design */

/* Small mobile devices */
@media (max-width: 480px) {
  .payment-info {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .payment-title,
  .payment-footer {
    font-size: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .download-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .footer-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .tutorials-grid {
    gap: 1.5rem;
  }
}

/* Medium mobile devices */
@media (min-width: 481px) and (max-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Large mobile/small tablet */
@media (min-width: 641px) {
  .contact-details {
    flex-direction: row;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .requests-buttons {
    flex-direction: row;
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .tutorials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .btn {
    width: auto;
    min-height: 44px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .section-title {
    font-size: 3.125rem;
  }
  
  .requests-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile navigation display rules */
@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .membership-tier:hover {
    transform: none;
  }
  
  .membership-tier:active {
    transform: translateY(-2px);
  }
}

.small-note {
    font-size: 0.9rem;
    margin-top: 6px;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.contact-section .container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* Contact Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    width: 100%;
    background: #fffff; /* Dark background */
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin: 0 auto 2.5rem auto;
    display: flex;
    gap: 2rem;
}

/* Left column */
.contact-left {
    flex: 1;
}

/* Right image */
.contact-right img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Labels */
.form-group label {
    margin-bottom: 0.5rem;
    color: #fffff;
    font-size: 0.9rem;
}

/* Inputs + Textarea — now customizable */
.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);

    /* ✨ Easy background customization */
    background: hsl(210, 20%, 20%);

    color: #fff; /* White text */
}

/* Placeholder color */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.full-width {
    width: 100%;
}

/* Add space under textarea */
.form-group textarea {
    margin-bottom: 1rem;
}

/* Submit Button — Styled like .btn.btn-primary */
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.875rem 2rem; /* same as .btn */
    font-size: 1.125rem;
    font-weight: 600;

    background-color: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.375rem;

    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

/* Hover effect to match .btn-primary:hover */
.contact-form button:hover {
    background-color: hsl(25, 95%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 139, 69, 0.3);
}

/* Icon inside button */
.contact-form button img {
    width: 1.25rem;
    height: 1.25rem;
}


/* Contact Footer */
.tutorials-footer {
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 2rem;
}

.footer-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-buttons .btn {
    min-width: 280px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {

    .contact-section {
        padding: 1rem;
        border-radius: 0.50rem;
    }

    .contact-form {
        flex-direction: column;
        padding: 1.2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-buttons .btn {
        min-width: 100%;
    }

    .section-header {
        margin-bottom: 1rem;
    }
}
