@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Droid+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
  --dark-purple: #3f1d67;
  --cyan: #22e2e2;
  --light-grey: #d5dbea;
  --red-accent: #fd6f43;
  --white: #ffffff;
  --black: #1a1a1a;
  --royal-blue: #4169e1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--light-grey);
}

/* Flower of Life in Quote Section - Global Styles */
.flower-of-life-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: -50px;
}

.flower-of-life {
  width: 400px;
  height: 400px;
  opacity: 0.8;
}

/* Quote Styles - Global */
.featured-quote {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--dark-purple);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  font-family: 'Droid Serif', serif;
  font-weight: 400;
  opacity: 0.95;
  position: relative;
  padding: 20px 40px;
}

.footer-quote p {
  font-size: 1.6rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Droid Serif', serif;
}

.project-subtitle {
  color: var(--dark-purple);
  margin-bottom: 25px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.25rem;
}

.subtitle {
  font-family: 'Droid Serif', serif;
  font-weight: 400;
  color: var(--red-accent);
}

@keyframes gradient-flow {
  0% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
  100% { 
    background-position: 0% 50%; 
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--white), var(--cyan));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 15s ease infinite;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
}

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

.btn {
  display: inline-block;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--dark-purple);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--cyan);
  color: var(--dark-purple);
}

.btn-secondary:hover {
  background-color: var(--dark-purple);
  color: var(--white);
  transform: translateY(-2px);
}

section {
  padding: 120px 0;
}

/* Hero SVG Animation Opacity Values */
.hero-svg-opacity-high {
  --opacity-min: 0.5;
  --opacity-low: 0.6;
  --opacity-mid: 0.8;
  --opacity-high: 0.9;
}

.hero-svg-corner-opacity {
  --corner-opacity-min: 0;
  --corner-opacity-max: 0.7;
}

.section-light {
  background-color: var(--white);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
  color: var(--white);
}

.section-grey {
  background-color: var(--light-grey);
}

.section-speaker-gradient {
  background: linear-gradient(135deg, var(--light-grey), var(--white));
}

.section-creative-gradient {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--white) 35%, var(--cyan) 100%);
  color: var(--white);
}

/* Footer Styles - Global */
.main-footer {
  background: white;
  color: var(--black);
  padding: 60px 0 20px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--dark-purple), var(--cyan), var(--dark-purple)) 1;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.footer-section h4 {
  color: var(--dark-purple);
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 4px;
  line-height: 1.3;
}

.footer-section a {
  color: var(--dark-purple);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-section a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-icons a:hover {
  background: var(--dark-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(63, 29, 103, 0.3);
}

.footer-quote {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--cyan), transparent) 1;
  margin-bottom: 40px;
}

.follow-note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--black);
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--dark-purple), transparent) 1;
  color: var(--black);
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom a {
  background: linear-gradient(135deg, var(--cyan), var(--dark-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-bottom a:hover {
  background: linear-gradient(135deg, var(--dark-purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

