/* ========== ROOT VARIABLES ========== */
:root {
  /* Tetrad Color Scheme */
  --primary-color: #ff5a5f;
  --primary-dark: #e04247;
  --primary-light: #ff7e83;
  
  --secondary-color: #5a9cff;
  --secondary-dark: #4785e0;
  --secondary-light: #7eb3ff;
  
  --tertiary-color: #5fff5a;
  --tertiary-dark: #47e044;
  --tertiary-light: #83ff7e;
  
  --quaternary-color: #c45aff;
  --quaternary-dark: #a447e0;
  --quaternary-light: #d77eff;
  
  /* Neutrals */
  --dark: #222222;
  --dark-gray: #444444;
  --medium-gray: #777777;
  --light-gray: #dddddd;
  --off-white: #f9f9f9;
  --white: #ffffff;
  
  /* Fonts */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Shadows & Effects */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --fast-transition: 0.2s ease-out;
  --medium-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --slow-transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  
  /* Border Radius */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
}

/* ========== GLOBAL STYLES ========== */
body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--off-white);
}

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

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

a:hover {
  color: var(--primary-dark);
}

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

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

/* Image container */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.5rem;
}

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

/* ========== BUTTON STYLES ========== */
.button {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--medium-transition);
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: var(--medium-transition);
  z-index: -1;
}

.button:hover::before {
  transform: translateY(0);
}

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

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

.retro-button {
  box-shadow: 4px 4px 0 var(--dark);
  border: 2px solid var(--dark);
  transform: translate(-2px, -2px);
  transition: var(--fast-transition);
}

.retro-button:hover {
  box-shadow: 2px 2px 0 var(--dark);
  transform: translate(0, 0);
}

.retro-button-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  color: var(--white);
  transform: translate(-2px, -2px);
  transition: var(--fast-transition);
}

.retro-button-outline:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  transform: translate(0, 0);
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--medium-transition);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  transition: var(--fast-transition);
}

.navbar-item:hover {
  color: var(--primary-color);
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--dark);
}

.navbar-brand .title {
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ========== HERO SECTION ========== */
.retro-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.retro-hero .title, 
.retro-hero .subtitle {
  color: var(--white);
  text-shadow: var(--text-shadow);
}

.retro-hero .hero-body {
  z-index: 2;
}

.retro-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(196, 90, 255, 0.3), 
    rgba(255, 90, 95, 0.3), 
    rgba(90, 156, 255, 0.3), 
    rgba(95, 255, 90, 0.3));
  mix-blend-mode: overlay;
  z-index: 1;
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 5rem 1.5rem;
}

.retro-section-light {
  background-color: var(--off-white);
  position: relative;
}

.retro-section-dark {
  background-color: var(--dark);
  color: var(--white);
  position: relative;
}

.retro-section-medium {
  background-color: var(--light-gray);
  position: relative;
}

.retro-section-light::before,
.retro-section-dark::before,
.retro-section-medium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 90, 95, 0.05) 0%, 
    rgba(90, 156, 255, 0.05) 25%, 
    rgba(95, 255, 90, 0.05) 50%, 
    rgba(196, 90, 255, 0.05) 75%, 
    rgba(255, 90, 95, 0.05) 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  z-index: 0;
}

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

.retro-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.retro-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
}

.retro-section-dark .retro-title {
  color: var(--white);
}

.retro-section-dark .retro-title::after {
  background: var(--secondary-color);
}

/* ========== CARD STYLES ========== */
.card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--medium-transition);
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--slow-transition);
}

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  width: 100%;
}

.retro-card {
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
  transform: translate(-4px, -4px);
  transition: var(--fast-transition);
}

.retro-card:hover {
  box-shadow: 4px 4px 0 var(--dark);
  transform: translate(0, 0);
}

.retro-section-dark .retro-card {
  border: 2px solid var(--white);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
}

.retro-section-dark .retro-card:hover {
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
}

/* ========== TIMELINE STYLES ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-light);
  z-index: 3;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  width: 45%;
  margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 55%;
}

.retro-timeline .timeline-content {
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 var(--dark);
  transform: translate(-4px, -4px);
  transition: var(--fast-transition);
}

.retro-timeline .timeline-content:hover {
  box-shadow: 4px 4px 0 var(--dark);
  transform: translate(0, 0);
}

/* ========== GALLERY STYLES ========== */
.gallery-container {
  margin-top: 2rem;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  height: 300px;
  margin-bottom: 1.5rem;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--medium-transition);
}

.image-container:hover .image-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

/* ========== TESTIMONIAL STYLES ========== */
.retro-testimonial-card {
  border: 2px solid var(--dark);
  box-shadow: 8px 8px 0 var(--quaternary-color);
  transform: translate(-4px, -4px);
  transition: var(--fast-transition);
  height: 100%;
}

.retro-testimonial-card:hover {
  box-shadow: 4px 4px 0 var(--quaternary-color);
  transform: translate(0, 0);
}

.retro-testimonial-card .media-left img {
  border: 2px solid var(--primary-color);
}

.stars {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* ========== CONTACT FORM STYLES ========== */
.retro-input,
.retro-textarea,
.retro-select select {
  border: 2px solid var(--dark);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem;
  box-shadow: 4px 4px 0 var(--dark);
  transition: var(--fast-transition);
}

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

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item {
  margin-bottom: 1rem;
}

/* ========== FOOTER STYLES ========== */
.retro-footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.retro-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 90, 95, 0.05) 0%, 
    rgba(90, 156, 255, 0.05) 25%, 
    rgba(95, 255, 90, 0.05) 50%, 
    rgba(196, 90, 255, 0.05) 75%, 
    rgba(255, 90, 95, 0.05) 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  z-index: 0;
}

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

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

.footer-links a {
  color: var(--light-gray);
  transition: var(--fast-transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  transition: var(--fast-transition);
}

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

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

/* Newsletter form */
.newsletter .input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.newsletter .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* ========== SUCCESS PAGE ========== */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.success-card {
  max-width: 600px;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
}

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

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  color: var(--white);
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.cookie-consent p {
  margin-bottom: 1rem;
}

/* ========== TERMS & PRIVACY PAGES ========== */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--card-shadow);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
}

/* ========== RESPONSIVE STYLES ========== */
@media screen and (max-width: 1023px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .retro-title {
    font-size: 2rem !important;
  }
  
  .retro-card,
  .retro-testimonial-card {
    margin-bottom: 2rem;
  }
  
  .image-container {
    height: 250px;
  }
  
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .navbar-burger {
    margin-top: 0.5rem;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Apply animations to specific elements */
.retro-button:hover {
  animation: pulse 1s ease-in-out infinite;
}

/* ========== UTILITY CLASSES ========== */
.mb-6 {
  margin-bottom: 3rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 1rem;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: var(--fast-transition);
}

.read-more:hover::after {
  margin-left: 10px;
}

.is-centered {
  text-align: center;
}
.navbar-burger{
  display: none;
}