/* ===== Base Styles and Variables ===== */
:root {
  /* Main Colors */
  --primary-color: #f8bbd0; /* Soft pink */
  --primary-dark: #c48b9f;
  --secondary-color: #b3e5fc; /* Soft blue */
  --secondary-dark: #82b3c9;
  --tertiary-color: #c8e6c9; /* Soft green */
  --tertiary-dark: #97b498;
  --accent-color: #ffe0b2; /* Soft orange/peach */
  --accent-dark: #cbaf82;
  
  /* Neutral Colors */
  --neutral-lightest: #ffffff;
  --neutral-light: #f5f5f5;
  --neutral-medium: #e0e0e0;
  --neutral-dark: #9e9e9e;
  --neutral-darkest: #424242;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #ffffff;
  
  /* Font Families */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Grid */
  --grid-gap: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--neutral-lightest);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Buttons ===== */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.button.is-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.button.is-outlined.is-light {
  background-color: transparent;
  border: 2px solid var(--neutral-light);
  color: var(--text-light);
}

.button.is-outlined.is-light:hover {
  background-color: var(--neutral-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.button.is-primary.is-light {
  background-color: var(--primary-color);
  opacity: 0.8;
  color: var(--text-dark);
}

.button.is-primary.is-light:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== Layout Classes ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xl) 0;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--grid-gap)) var(--spacing-lg);
}

.column {
  flex: 1;
  padding: 0 var(--grid-gap);
  margin-bottom: var(--grid-gap);
}

.is-one-quarter {
  flex: 0 0 25%;
  max-width: 25%;
}

.is-one-third {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.is-two-thirds {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.is-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.is-multiline {
  flex-wrap: wrap;
}

.has-text-centered {
  text-align: center;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* ===== Header and Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-item {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  color: var(--text-dark);
  font-weight: 500;
}

.navbar-item:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  height: 3.25rem;
  width: 3.25rem;
  position: relative;
}

.navbar-burger span {
  background-color: var(--text-dark);
  display: block;
  height: 2px;
  width: 24px;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  transition: all 0.3s ease;
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: 50%;
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 8px);
}

.navbar-menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.navbar-end {
  display: flex;
  align-items: center;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
}

.hero.is-fullheight {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
  z-index: 1;
}

.hero-body .title,
.hero-body .subtitle,
.hero-body p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-body .title.is-1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.5px;
}

.hero-body .subtitle.is-3 {
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}

.hero-foot {
  padding-bottom: var(--spacing-xl);
  z-index: 1;
}

.scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ===== Distorted Grid (Projects/Collections) ===== */
.distorted-grid {
  position: relative;
  overflow: hidden;
}

.distorted-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.1) 0%, rgba(179, 229, 252, 0.1) 50%, rgba(200, 230, 201, 0.1) 100%);
  z-index: -1;
  transform: skewY(-2deg);
}

.timeline {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--neutral-lightest);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.timeline-content {
  background-color: var(--neutral-lightest);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.card {
  background-color: var(--neutral-lightest);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  overflow: hidden;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card .title {
  margin-bottom: var(--spacing-sm);
}

/* ===== Testimonials Section ===== */
.has-background-light {
  background-color: var(--neutral-light);
}

.media {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.media-left {
  margin-right: var(--spacing-md);
}

.media-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image.is-48x48 {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: var(--spacing-sm);
}

/* ===== Partners Section ===== */
.partner-card {
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.resource-item {
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  background-color: var(--neutral-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.resource-item h4 {
  margin-bottom: var(--spacing-sm);
}

.resource-item p {
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

/* ===== Workshops Section ===== */
.workshop-details {
  background-color: var(--neutral-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  margin: var(--spacing-md) 0;
}

.statistic-card {
  background-color: var(--neutral-lightest);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.statistic-card .title {
  color: var(--primary-dark);
  margin-bottom: var(--spacing-xs);
}

/* ===== Contact Section ===== */
.field {
  margin-bottom: var(--spacing-md);
}

.label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.input, .textarea, .select select {
  width: 100%;
  /* padding: 0.75rem; */
  border: 1px solid var(--neutral-medium);
  border-radius: var(--border-radius-md);
  background-color: var(--neutral-lightest);
  transition: all 0.3s ease;
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(248, 187, 208, 0.25);
  outline: none;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  margin-right: var(--spacing-xs);
}

.field.has-addons {
  display: flex;
}

.control.is-expanded {
  flex-grow: 1;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--neutral-darkest);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
}

.footer .title, .footer .subtitle {
  color: var(--text-light);
}

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

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer a {
  color: var(--neutral-medium);
}

.footer a:hover {
  color: var(--neutral-lightest);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  color: var(--neutral-medium);
  margin-right: var(--spacing-md);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-xl);
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: var(--spacing-lg);
}

/* ===== Privacy & Terms Pages ===== */
.privacy-content, .terms-content {
  padding-top: 100px;
}

/* ===== Scroll Reveal Animations ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== Media Queries ===== */
@media (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .navbar-menu.is-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-lightest);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-md) 0;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .column.is-one-quarter,
  .column.is-one-third,
  .column.is-half,
  .column.is-two-thirds {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-body .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero-body .subtitle.is-3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .column.is-one-quarter {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .column.is-one-third {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ===== Additional Utility Classes ===== */
.has-text-white {
  color: var(--text-light) !important;
}

.is-size-5 {
  font-size: 1.25rem;
}

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

.button.is-medium {
  font-size: 1.25rem;
  height: 2.5em;
  padding-left: 1em;
  padding-right: 1em;
}