/*
Theme Name: AVGG Elementor Theme
Theme URI: https://avgg.org
Author: African Violet Growers Group
Author URI: https://avgg.org
Description: A custom Elementor-friendly one-page WordPress theme for African Violet Growers Group.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: avgg-elementor-theme
*/

:root {
  --avgg-purple: #460A78;
  --avgg-green: #286E00;
  --avgg-charcoal: #1E2832;
  --avgg-soft-violet: #DCC8E6;
  --avgg-yellow: #F0D000;
  --avgg-white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--avgg-charcoal);
  background: var(--avgg-white);
}

a {
  color: inherit;
}

.avgg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.avgg-header {
  background: var(--avgg-white);
  border-bottom: 1px solid rgba(30, 40, 50, 0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

.avgg-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.avgg-logo {
  color: var(--avgg-purple);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.avgg-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.avgg-menu a {
  color: var(--avgg-charcoal);
  text-decoration: none;
  font-weight: 700;
}

.avgg-menu a:hover {
  color: var(--avgg-green);
}

.avgg-section {
  padding: 90px 0;
}

.avgg-hero {
  padding: 70px 0 40px;
}

.avgg-hero-box {
  min-height: 440px;
  background: var(--avgg-soft-violet);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 30px;
}

.avgg-hero-box h1 {
  color: var(--avgg-purple);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.avgg-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.avgg-feature-box {
  min-height: 260px;
  background: var(--avgg-soft-violet);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--avgg-purple);
  font-size: 34px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.avgg-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(30, 40, 50, 0.18);
  color: var(--avgg-green);
}

.avgg-intro-box {
  background: var(--avgg-charcoal);
  color: var(--avgg-white);
  border-radius: 22px;
  text-align: center;
  padding: 70px 35px;
}

.avgg-intro-box p {
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.35;
  margin: 0;
  font-weight: 700;
}

.avgg-content-section h2 {
  color: var(--avgg-purple);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 20px;
  font-weight: 800;
}

.avgg-content-section p {
  color: var(--avgg-charcoal);
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

.avgg-section-soft {
  background: var(--avgg-soft-violet);
}

.avgg-section-purple {
  background: var(--avgg-purple);
}

.avgg-section-purple h2,
.avgg-section-purple p {
  color: var(--avgg-white);
}

.avgg-footer {
  background: var(--avgg-charcoal);
  color: var(--avgg-white);
  padding: 70px 0 24px;
}

.avgg-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 40px;
}

.avgg-footer h3 {
  color: var(--avgg-yellow);
  margin: 0 0 18px;
  font-size: 22px;
}

.avgg-footer p,
.avgg-footer a,
.avgg-footer label {
  color: var(--avgg-white);
  font-size: 16px;
  line-height: 1.7;
}

.avgg-footer a {
  text-decoration: none;
}

.avgg-footer a:hover {
  color: var(--avgg-soft-violet);
}

.avgg-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.avgg-newsletter input {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
}

.avgg-newsletter button {
  border: 0;
  border-radius: 999px;
  background: var(--avgg-yellow);
  color: var(--avgg-charcoal);
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
}

.avgg-copyright {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 50px;
  padding-top: 22px;
  text-align: center;
  color: var(--avgg-soft-violet);
  font-size: 14px;
}

.avgg-main-content {
  width: 100%;
}

@media (max-width: 900px) {
  .avgg-header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .avgg-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .avgg-feature-grid,
  .avgg-footer-grid {
    grid-template-columns: 1fr;
  }

  .avgg-section {
    padding: 65px 0;
  }

  .avgg-hero-box {
    min-height: 320px;
  }

  .avgg-newsletter {
    flex-direction: column;
  }
}