/* Banana Accounting Education Site - Clean Professional Layout */
:root {
  --color-primary: #FFD700;
  --color-primary-dark: #F4C430;
  --color-primary-darker: #DAA520;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-lighter: #888888;
  --color-white: #ffffff;
  --color-bg-light: #FFFEF7;
  --color-bg-section: #f2fdff;
  --color-border: #E0E0E0;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --line-height: 1.6;
  --border-radius: 8px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --container-max-width: 1200px;
  --section-padding: 80px 0;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-white);
}

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

/* Navigation Header */
.navbar {
  background: hsl(52.57deg 96.58% 54.12%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary-darker);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-cta {
  background: var(--color-primary);
  color: var(--color-text);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(255, 255, 255, 1) 100%);
  color: var(--color-text);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

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

.hero-text h1 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: none;
  line-height: 1.2;
  color: var(--color-text);
}

.hero-text p {
  font-size: var(--font-size-lg);
  margin-bottom: 30px;
  opacity: 0.9;
  text-align: left;
  color: var(--color-text-light);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 12px; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

/* Button Styling */
.btn {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary-darker);
  padding: 15px 30px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid var(--color-white);
}

.btn:hover {
  background-color: var(--color-primary-darker);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 2px solid var(--color-primary);
  font-size: var(--font-size-lg);
  padding: 18px 35px;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-text);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(244, 196, 48, 0.3);
}

.cta-button-container {
  text-align: center;
  margin-top: 30px;
}

/* Highlight Quote */
.highlight-quote {
  text-align: center;
  margin: 40px 0;
  padding: 0 20px;
}

.highlight-quote blockquote {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 40px 50px;
  border-radius: 15px;
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
  border: none;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.highlight-quote blockquote::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: serif;
  line-height: 1;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  margin-left: 15px;
}

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

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

.section-alt {
  background-color: var(--color-bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Three Column Features */
.features-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-item .column-image {
  margin-bottom: 20px;
}

.feature-item .column-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--color-white);
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--color-text-light);
  text-align: center;
}

.feature-item ul {
  text-align: left;
  margin: 15px 0;
  padding-left: 20px;
  max-width: none;
}

.feature-item li {
  color: var(--color-text-light);
  margin-bottom: 8px;
}

/* Two Column Layouts */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

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

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

.column-content h2 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  text-align: left;
}

.column-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 15px;
}

.column-content p {
  color: var(--color-text-light);
  text-align: left;
  margin-bottom: 20px;
}

.column-content ul {
  text-align: left;
  margin: 20px 0;
  padding-left: 20px;
}

.column-content li {
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  /* box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.column-image img:hover {
  transform: translateY(-5px);
  /* box-shadow: var(--shadow-hover); */
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

.features-grid {
  background-color: #f2fdff;
}

/* Process Steps */
.process-steps {
  margin-top: 40px;
}

.process-steps ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.process-steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 0 20px 60px;
  border-left: 2px solid var(--color-border);
  margin-bottom: -5px;
}

.process-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: -15px;
  top: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* .process-steps li:last-child {
  border-left: none;
} */

/* Footer */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 30px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-line {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-line a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 8px;
}

.registration-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.registration-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  flex-shrink: 0;
  vertical-align: middle;
}

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

.footer .btn {
  background-color: var(--color-primary);
  color: var(--color-text);
  border-color: var(--color-primary);
}

.footer .btn:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-text);
}

.footer img {
  max-width: 300px;
  margin: 20px auto;
  border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text {
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nav-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }
  
  .hero {
    padding: 90px 0;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: var(--font-size-base);
  }
  
  .features-three {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .container {
    padding: 0 25px;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .footer-line {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .registration-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 30px;
  }
  
  .hero {
    padding: 70px 0;
  }
  
  .hero-text h1 {
    font-size: 24px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .footer {
    padding: 35px 0 30px;
  }
  
  .footer-content {
    gap: 18px;
  }
  
  .footer-line {
    font-size: 13px;
    /* flex-direction: column; */
    gap: 10px;
    text-align: center;
    line-height: 1.4;
  }
  
  .separator {
    display: none;
  }
  
  .registration-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    text-align: center;
  }
  
  .registration-icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    flex-shrink: 0;
  }
  
  /* Ensure long text doesn't break awkwardly */
  .footer-line a {
    word-break: keep-all;
    white-space: nowrap;
  }
  
  /* Allow text to wrap naturally for very long content */
  .footer-line {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.video-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.video-item a {
  display: block;
  text-decoration: none;
}

.video-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-item:hover img {
  transform: scale(1.02);
}

.video-info {
  padding: 25px;
}

.video-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.video-info h3 a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.video-info h3 a:hover {
  color: var(--color-primary-darker);
}

.video-duration {
  font-size: 14px;
  color: var(--color-text-lighter);
  margin-bottom: 12px;
  font-weight: 500;
}

.video-description {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Videos */
@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .video-item {
    max-width: 100%;
  }
  
  .video-info {
    padding: 25px;
  }
  
  .video-info h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .videos-grid {
    gap: 25px;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-info h3 {
    font-size: 16px;
  }
  
  .video-duration,
  .video-description {
    font-size: 13px;
  }
  
  .highlight-quote blockquote {
    padding: 35px 30px;
    font-size: 18px;
  }
  
  .highlight-quote blockquote::before,
  .highlight-quote blockquote::after {
    font-size: 60px;
  }
}
  