/* Root Variables */
:root {
  /* Color Palette */
  --primary-color: #1a1a1a;
  --primary-light: #2a2a2a;
  --primary-dark: #0f0f0f;
  --secondary-color: #4a4a4a;
  --accent-color: #6a6a6a;
  --accent-light: #8a8a8a;
  --text-color: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a1a;
  --card-background: #ffffff;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-color: #e0e0e0;
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
  
  /* Container Widths */
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Typography Enhancement */
.title {
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.title.is-1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

.title.is-2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

.title.is-3 {
  font-size: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.subtitle {
  font-weight: 400;
  margin-bottom: var(--spacing-md);
  color: var(--text-light);
}

.has-text-white {
  color: var(--text-white) !important;
}

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

.has-text-right {
  text-align: right;
}

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

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  font-family: var(--heading-font);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

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

.content ul, .content ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.content li {
  margin-bottom: var(--spacing-xs);
}

/* Buttons */
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.5;
}

.button:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

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

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

.button.is-medium {
  font-size: 1.25rem;
  padding: 0.75rem 1.75rem;
}

.button.is-large {
  font-size: 1.5rem;
  padding: 1rem 2rem;
}

.button.is-small {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.section:nth-child(even) {
  background-color: var(--background-light);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.5rem;
}

.navbar-brand h1 {
  margin-bottom: 0;
}

.navbar-menu {
  display: flex;
}

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

.navbar-item {
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--accent-color);
}

.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: none;
}

.navbar-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .navbar-burger {
    display: flex;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 0.75rem 1.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero.is-medium {
  height: 60vh;
  min-height: 400px;
}

.hero.is-fullheight {
  height: 100vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-body {
  z-index: 1;
  width: 100%;
  padding: 3rem 1.5rem;
}

.hero-foot {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 1;
}

.scroll-down {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 25px;
}

.scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: white;
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.columns:last-child {
  margin-bottom: -0.75rem;
}

.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}

.column.is-one-quarter {
  flex: none;
  width: 25%;
}

.column.is-one-third {
  flex: none;
  width: 33.3333%;
}

.column.is-half {
  flex: none;
  width: 50%;
}

.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}

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

.columns.is-centered {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .column.is-one-quarter,
  .column.is-one-third,
  .column.is-half,
  .column.is-two-thirds {
    width: 100%;
  }
}

/* Card */
.card {
  background-color: var(--card-background);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Consejos Section */
.consejos-section {
  position: relative;
}

.consejos-card {
  margin-bottom: 2rem;
}

.statistics-widget {
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: 8px;
}

.stat-box {
  padding: 1.5rem;
  text-align: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.stat-box h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Workshops Section */
.workshops-section {
  position: relative;
}

.workshop-card {
  margin-bottom: 2rem;
}

.workshop-info {
  margin: 1rem 0;
}

.icon-text {
  display: flex;
  align-items: center;
}

.icon {
  margin-right: 0.5rem;
}

/* Resources Section */
.resources-section {
  position: relative;
}

.resource-card {
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  position: relative;
}

.team-card {
  text-align: center;
  margin-bottom: 2rem;
}

.team-card .image-container {
  height: 300px;
  border-radius: 8px 8px 0 0;
}

.team-card .card-content {
  text-align: center;
}

/* Testimonials Section */
.clientele-section {
  position: relative;
}

.testimonial-card {
  margin-bottom: 2rem;
}

.media {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.media-left {
  margin-right: 1rem;
}

.media-content {
  flex-grow: 1;
}

.image.is-64x64 {
  height: 64px;
  width: 64px;
}

.is-rounded {
  border-radius: 50%;
}

/* Calendar Section */
.calendar-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  top: 6px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 4px white;
  z-index: 1;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.event-date {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Media Section */
.media-section {
  position: relative;
}

.media-card {
  margin-bottom: 2rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  position: relative;
}

.behind-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.behind-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sustainability Section */
.sustainability-section {
  position: relative;
}

.sustainability-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.sustainability-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  margin: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-description {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  position: relative;
}

.contact-form {
  margin-bottom: 2rem;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.control {
  position: relative;
  width: 100%;
}

.input, .textarea, .select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: white;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.textarea {
  min-height: 120px;
  resize: vertical;
}

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

.checkbox input {
  margin-right: 0.5rem;
}

.field.is-grouped {
  display: flex;
}

.field.is-grouped .control:not(:last-child) {
  margin-right: 0.75rem;
}

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

.field.has-addons .control:not(:last-child) {
  margin-right: 0;
}

.field.has-addons .control:first-child .input {
  border-radius: 4px 0 0 4px;
}

.field.has-addons .control:last-child .button {
  border-radius: 0 4px 4px 0;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.info-item .icon {
  margin-right: 1rem;
  font-size: 1.25rem;
}

.social-media {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary-light);
  color: white;
}

/* Contact Sidebar */
.contact-sidebar {
  height: 100%;
}

.contact-info-block, .social-media-block, .newsletter-block {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

/* FAQ Section */
.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

/* Map Section */
.map-section {
  position: relative;
}

.map-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 100px;
}

/* Success Page */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.steps-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 2rem;
}

.steps-list li {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--background-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.is-expanded { width: 100%; }

/* Media Queries */
@media screen and (max-width: 1023px) {
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .title.is-3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: var(--spacing-lg) 0;
  }
  
  .title.is-1 {
    font-size: 2rem;
  }
  
  .title.is-2 {
    font-size: 1.75rem;
  }
  
  .title.is-3 {
    font-size: 1.5rem;
  }
  
  .hero {
    height: auto;
    min-height: 70vh;
  }
  
  .timeline::before {
    left: 12px;
  }
  
  .timeline-marker {
    width: 16px;
    height: 16px;
    top: 4px;
    left: 4px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
  
  .sustainability-stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin: 0.5rem 0;
  }
}

@media screen and (max-width: 480px) {
  .title.is-1 {
    font-size: 1.75rem;
  }
  
  .title.is-2 {
    font-size: 1.5rem;
  }
  
  .title.is-3 {
    font-size: 1.25rem;
  }
  
  .button.is-large {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand{
    width: 100%;
  }
}