/* Gecko Gully Courses - Main Stylesheet */
/* Editorial Educational Platform Design */

:root {
  --gg-primary: #1a472a;
  --gg-primary-light: #2d6d45;
  --gg-accent: #d97706;
  --gg-accent-light: #f59e0b;
  --gg-text-dark: #1f2937;
  --gg-text-medium: #4b5563;
  --gg-text-light: #6b7280;
  --gg-bg-cream: #faf8f5;
  --gg-bg-light: #ffffff;
  --gg-border: #e5e7eb;
  --gg-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --gg-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --gg-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --gg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--gg-text-dark);
  background-color: var(--gg-bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--gg-primary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--gg-accent);
  text-decoration: none;
  transition: var(--gg-transition);
}

a:hover {
  color: var(--gg-accent-light);
}

/* Navigation */
.gg-m4k92-nav-wrapper {
  background: var(--gg-bg-light);
  border-bottom: 1px solid var(--gg-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--gg-shadow-sm);
}

.gg-j8n31-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gg-t5y67-brand-logo {
  font-family: 'Crimson Text', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gg-primary);
  letter-spacing: -0.01em;
}

.gg-p9q14-nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.gg-p9q14-nav-menu a {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  color: var(--gg-text-dark);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.gg-p9q14-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gg-accent);
  transition: width 0.3s ease;
}

.gg-p9q14-nav-menu a:hover::after {
  width: 100%;
}

.gg-w3d88-cta-button {
  background: var(--gg-accent);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--gg-transition);
  border: none;
  cursor: pointer;
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
}

.gg-w3d88-cta-button:hover {
  background: var(--gg-accent-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--gg-shadow-md);
}

/* Mobile Menu Toggle */
.gg-x7b42-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gg-primary);
  cursor: pointer;
}

/* Editorial Layout Components */
.gg-k1m77-editorial-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.gg-h9r23-wide-canvas {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.gg-n6c55-narrow-reading {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.gg-b8f91-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin: 4rem 0;
}

.gg-l4p33-overlap-section {
  position: relative;
  margin: 6rem 0;
}

/* Hero/Feature Sections */
.gg-a2t88-editorial-intro {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background: url('../images/banner.jpg');
  background-repeat: no-repeat;

  width: 100%;
  height: 100%;
  border-bottom: 3px solid var(--gg-primary);
}

.gg-a2t88-editorial-intro::before{
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--gg-bg-cream) 0%, #f3f1ed 100%);

}

.gg-a2t88-editorial-intro h1 {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 4rem;
}

.gg-a2t88-editorial-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: var(--gg-text-medium);
}

/* Course Cards */
.gg-h3k8f-course-block {
  background: var(--gg-bg-light);
  border: 2px solid var(--gg-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--gg-transition);
  margin-bottom: 3rem;
}

.gg-h3k8f-course-block:hover {
  border-color: var(--gg-accent);
  box-shadow: var(--gg-shadow-lg);
  transform: translateY(-4px);
}

.gg-v5n92-course-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-bottom: 3px solid var(--gg-primary);
}
.gg-r3f99-read-time{
  margin-bottom: 20px;
}

.gg-d7w41-course-content {
  padding: 2.5rem;
}

.gg-d7w41-course-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.gg-j2m88-course-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gg-text-medium);
  font-size: 0.95rem;
}

/* Article Cards */
.gg-q77d1-article-layout {
  background: var(--gg-bg-light);
  border-left: 4px solid var(--gg-accent);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--gg-shadow-sm);
  transition: var(--gg-transition);
}

.gg-q77d1-article-layout:hover {
  box-shadow: var(--gg-shadow-md);
  border-left-width: 8px;
}

.gg-q77d1-article-layout h3 {
  margin-bottom: 1rem;
}

.gg-e8k44-article-excerpt {
  color: var(--gg-text-medium);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.gg-r3f99-read-time {
  font-size: 0.9rem;
  color: var(--gg-text-light);
  font-style: italic;
}

/* Interactive Selector */
.gg-s4h77-learning-selector {
  background: var(--gg-bg-light);
  border: 3px solid var(--gg-primary);
  border-radius: 12px;
  padding: 3rem;
  margin: 4rem 0;
  box-shadow: var(--gg-shadow-md);
}

.gg-s4h77-learning-selector h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.gg-c9p66-selector-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.gg-y1k33-selector-card {
  background: var(--gg-bg-cream);
  border: 2px solid var(--gg-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--gg-transition);
}

.gg-y1k33-selector-card:hover {
  border-color: var(--gg-accent);
  background: var(--gg-bg-light);
  transform: scale(1.05);
}

.gg-y1k33-selector-card i {
  font-size: 3rem;
  color: var(--gg-accent);
  margin-bottom: 1rem;
}

.gg-y1k33-selector-card h4 {
  margin-bottom: 0.75rem;
  color: var(--gg-primary);
}

/* Quote Carousel */
.gg-t8n44-quote-carousel {
  background: var(--gg-primary);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 5rem 0;
}

.gg-m2q77-carousel-quote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.6;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.6s ease;
}

.gg-m2q77-carousel-quote.gg-z5k11-active {
  opacity: 1;
  position: relative;
  left: auto;
  transform: none;
}

.gg-p6r88-quote-author {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--gg-accent-light);
  font-style: normal;
}

/* Timeline Visualization */
.gg-x4m91-timeline-visual {
  margin: 5rem 0;
  padding: 3rem;
  background: linear-gradient(to right, var(--gg-bg-light), var(--gg-bg-cream));
  border-radius: 12px;
}

.gg-d1n55-timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 3rem;
}

.gg-d1n55-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--gg-accent);
  border-radius: 50%;
  border: 4px solid var(--gg-bg-light);
}

.gg-d1n55-timeline-item::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 20px;
  width: 2px;
  height: calc(100% + 3rem);
  background: var(--gg-border);
}

.gg-d1n55-timeline-item:last-child::after {
  display: none;
}

/* Manifesto Section */
.gg-f7k22-manifesto-block {
  background: var(--gg-primary-light);
  color: white;
  padding: 4rem;
  border-radius: 12px;
  margin: 5rem 0;
  position: relative;
}

.gg-f7k22-manifesto-block h2 {
  color: white;
  margin-bottom: 2rem;
}

.gg-n8v44-manifesto-points {
  list-style: none;
  counter-reset: manifesto;
}

.gg-n8v44-manifesto-points li {
  counter-increment: manifesto;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
  font-size: 1.15rem;
}

.gg-n8v44-manifesto-points li::before {
  content: counter(manifesto);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--gg-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Forms */
.gg-b7e44-form-control {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--gg-border);
  border-radius: 6px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: var(--gg-transition);
}

.gg-b7e44-form-control:focus {
  outline: none;
  border-color: var(--gg-accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.gg-b7e44-form-control.gg-x2p91-error {
  border-color: #dc2626;
}

.gg-n7q33-error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

textarea.gg-b7e44-form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.gg-r8m44-footer-wrapper {
  background: var(--gg-primary);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  border-top: 4px solid var(--gg-accent);
}

.gg-z3n77-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.gg-k6y22-footer-column h4 {
  color: var(--gg-accent-light);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.gg-k6y22-footer-column ul {
  list-style: none;
}

.gg-k6y22-footer-column li {
  margin-bottom: 0.75rem;
}

.gg-k6y22-footer-column a {
  color: rgba(255,255,255,0.85);
  transition: var(--gg-transition);
}

.gg-k6y22-footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.gg-q4b88-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

/* SVG Decorative Elements */
.gg-d9x55-svg-divider {
  width: 100%;
  margin: 4rem 0;
}

/* Cookie Consent */
.gg-k2d88-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gg-primary);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: var(--gg-shadow-lg);
  z-index: 2000;
  display: none;
  animation: gg-slideUp 0.4s ease;
}

.gg-k2d88-cookie-banner.gg-v8r33-visible {
  display: block;
}

@keyframes gg-slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.gg-y7m22-cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.gg-l3n88-cookie-actions {
  display: flex;
  gap: 1rem;
}

.gg-t9k44-accept-button {
  background: var(--gg-accent);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--gg-transition);
}

.gg-t9k44-accept-button:hover {
  background: var(--gg-accent-light);
}

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

.gg-u2m88-mt-large {
  margin-top: 4rem;
}

.gg-u3n99-mb-large {
  margin-bottom: 4rem;
}

.gg-u4p22-fade-in {
  animation: gg-fadeIn 0.8s ease;
}

@keyframes gg-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gg-b8f91-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gg-z3n77-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gg-c9p66-selector-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .gg-p9q14-nav-menu {
    display: none;
  }
  
  .gg-x7b42-menu-toggle {
    display: block;
  }
  
  .gg-k1m77-editorial-shell,
  .gg-h9r23-wide-canvas {
    padding: 2rem 1rem;
  }
  
  .gg-a2t88-editorial-intro h1 {
    font-size: 2.5rem;
  }
  
  .gg-z3n77-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .gg-y7m22-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Print Styles */
@media print {
  .gg-m4k92-nav-wrapper,
  .gg-r8m44-footer-wrapper,
  .gg-k2d88-cookie-banner {
    display: none;
  }
}




.gg-t5y67-brand-logo img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


/* footer .gg-t5y67-brand-logo img{
    filter: brightness(0) invert(1);
} */

.footer-text{
    margin-top: 20px;
}