/* ============================================
   GOOGLE FONTS - Plus Jakarta Sans
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');

/* ============================================
   CSS VARIABLES - fw- prefix
   ============================================ */
:root {
  --fw-primary: #E8703A;
  --fw-secondary: #F4E5A6;
  --fw-accent: #8B5A3C;
  --fw-dark: #1A1A1A;
  --fw-bg-primary: #FFFFFF;
  --fw-bg-secondary: #F8F8F8;
  --fw-text-primary: #1A1A1A;
  --fw-text-secondary: #666666;
  --fw-text-light: #999999;
  --fw-border: #E0E0E0;
  --fw-badge-nou: #1A1A1A;
  --fw-badge-hot: #E53935;
  --fw-badge-vegan: #4CAF50;
}

/* ============================================
   MODERN CSS RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fw-text-primary);
  background-color: var(--fw-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES - fw- prefix
   ============================================ */
.fw-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fw-section {
  padding: 4rem 0;
}

.fw-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--fw-primary);
  color: var(--fw-bg-primary);
  
  &:hover {
    background-color: var(--fw-accent);
    transform: translateY(-2px);
  }
  
  &--secondary {
    background-color: var(--fw-secondary);
    color: var(--fw-dark);
    
    &:hover {
      background-color: var(--fw-accent);
      color: var(--fw-bg-primary);
    }
  }
  
  &--outline {
    background-color: transparent;
    border: 2px solid var(--fw-primary);
    color: var(--fw-primary);
    
    &:hover {
      background-color: var(--fw-primary);
      color: var(--fw-bg-primary);
    }
  }
}

.fw-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  
  &--h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  &--h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  &--h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  &--h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }
}

.fw-text {
  &--primary {
    color: var(--fw-text-primary);
  }
  
  &--secondary {
    color: var(--fw-text-secondary);
  }
  
  &--light {
    color: var(--fw-text-light);
  }
}

/* ============================================
   HEADER WRAPPER
   ============================================ */
.fw-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ============================================
   TOPBAR
   ============================================ */
.fw-topbar {
  position: relative;
  z-index: 2;
  background-color: var(--fw-dark);
  color: var(--fw-bg-primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.fw-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fw-topbar__contact {
  display: flex;
  gap: 2rem;
}

.fw-topbar__link {
  color: var(--fw-bg-primary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  &:hover {
    color: var(--fw-primary);
  }
  
  i {
    font-size: 0.75rem;
  }
}

/* Ticker - adaugă între contact și social */
.fw-topbar__ticker {
    flex: 1;
    min-width: 0;
    margin: 0 2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
    margin-top: 3px;
}

.fw-ticker {
    width: 100%;
    height: 100%;
    position: relative;
}

.fw-ticker__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: tickerCycle 18s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
}

.fw-ticker__track--2 {
    animation-delay: 6s;
}

.fw-ticker__track--3 {
    animation-delay: 12s;
}

a.fw-ticker__text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.fw-ticker__text:hover {
    opacity: 0.8;
}

@keyframes tickerCycle {
    0% {
        transform: translateX(100vw);
        opacity: 0;
        pointer-events: none;
    }
    8% {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    9% {
        opacity: 0;
    }
    11% {
        opacity: 1;
    }
    12% {
        opacity: 0;
    }
    13%, 28% {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    33.33%, 100% {
        transform: translateX(-100vw);
        opacity: 0;
        pointer-events: none;
    }
}


.fw-topbar__social {
  display: flex;
  gap: 1rem;
}

.fw-topbar__social-link {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fw-bg-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  
  &:hover {
    background-color: var(--fw-primary);
    transform: translateY(-2px);
  }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.fw-header {
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 0 .5rem;
}

.fw-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fw-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fw-primary);
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  max-width: 260px;
  &:hover {
    transform: scale(1.05);
  }
}

.fw-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fw-btn--header {
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  box-shadow: 0 4px 15px rgba(232, 112, 58, 0.3);
  
  &:hover {
    box-shadow: 0 6px 20px rgba(232, 112, 58, 0.4);
    transform: translateY(-2px);
  }
}

/* Desktop Navigation */
.fw-nav-desktop {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.fw-nav-desktop__link {
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--fw-text-primary);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fw-primary);
    transition: width 0.3s ease;
  }
  
  &:hover {
    color: var(--fw-primary);
    
    &::after {
      width: 100%;
    }
  }
  
  &.fw-nav-desktop__link--active {
    color: var(--fw-primary);
    
    &::after {
      width: 100%;
    }
  }
}

.fw-burger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 0.375rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  
  span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fw-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  &.fw-burger--active {
    span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }
    
    span:nth-child(2) {
      opacity: 0;
    }
    
    span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
  }
}

.fw-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  
  &.fw-nav-overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile Navigation */
.fw-nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--fw-bg-primary);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.fw-nav-mobile.fw-nav-mobile--active {
  transform: translateX(0);
}

.fw-nav-mobile__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--fw-border);
}

.fw-nav-mobile__logo img {
  height: 50px;
  width: auto;
}

.fw-nav-mobile__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fw-dark);
  transition: all 0.3s ease;
}

.fw-nav-mobile__close:hover {
  color: var(--fw-primary);
  transform: scale(1.1);
}

.fw-nav-mobile__body {
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fw-nav-mobile__link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fw-text-primary);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.fw-nav-mobile__link:hover {
  background-color: var(--fw-bg-secondary);
  color: var(--fw-primary);
}

.fw-nav-mobile__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--fw-border);
}

.fw-btn--mobile {
  width: 100%;
  margin-bottom: 1rem;
}

.fw-nav-mobile__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.fw-nav-mobile__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--fw-bg-secondary);
  color: var(--fw-text-primary);
  transition: all 0.3s ease;
}

.fw-nav-mobile__social a:hover {
  background-color: var(--fw-primary);
  color: white;
}

.fw-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--fw-bg-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  
  &.fw-nav--active {
    transform: translateX(0);
  }
}

.fw-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--fw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: all 0.3s ease;
  
  &:hover {
    color: var(--fw-primary);
    transform: scale(1.1);
  }
}

.fw-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-nav__item {
  font-size: 1.125rem;
  font-weight: 500;
  
  a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fw-text-primary);
    transition: color 0.3s ease;
    
    &:hover {
      color: var(--fw-primary);
    }
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.fw-hero {
  position: relative;
  height: 75vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 120px;
}

.fw-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.fw-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.5);
  z-index: 2;
  
  /* Dotted overlay pattern */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.fw-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--fw-bg-primary);
  padding: 2rem;
  
  .fw-heading {
    color: var(--fw-bg-primary);
    margin-bottom: 1.5rem;
  }
  
  p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   TEASER SECTIONS
   ============================================ */
.fw-teaser {
  padding: 4rem 0;
  background-color: var(--fw-bg-secondary);
  
  &--alt {
    background-color: var(--fw-bg-primary);
  }
}

.fw-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fw-teaser__card {
  background-color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
}

.fw-teaser__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fw-teaser__content {
  padding: 1.5rem;
  
  .fw-heading {
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1.5rem;
    color: var(--fw-text-secondary);
  }
}
.hero__projects {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: #ffffffa8;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}
.hero__projects img {
    width: 100px;
}
@media only screen and (max-width: 768px) { 
  .hero__projects {
      padding: .5rem;
  }
  .hero__projects img {
      width: 40px;
  }
}

/* ============================================
   FORMS
   ============================================ */
.fw-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  &--contact {
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
  }
}

.fw-form__group {
  margin-bottom: 1.5rem;
}

.fw-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--fw-text-primary);
}

.fw-form__input,
.fw-form__select,
.fw-form__textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--fw-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  
  &:focus {
    outline: none;
    border-color: var(--fw-primary);
  }
}

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

/* ============================================
   CARDS
   ============================================ */
.fw-card {
  background-color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
}

.fw-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fw-card__content {
  padding: 1.5rem;
}

.fw-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fw-text-primary);
}

.fw-card__text {
  color: var(--fw-text-secondary);
  margin-bottom: 1rem;
}

.fw-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--fw-text-light);
  margin-bottom: 1rem;
}

.fw-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fw-primary);
  margin-bottom: 1rem;
}

/* ============================================
   BADGES
   ============================================ */
.fw-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 1.5rem;
  color: var(--fw-bg-primary);
  
  &--nou {
    background-color: var(--fw-badge-nou);
  }
  
  &--hot {
    background-color: var(--fw-badge-hot);
  }
  
  &--vegan {
    background-color: var(--fw-badge-vegan);
  }
}

/* ============================================
   MODAL
   ============================================ */
.fw-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  
  &.fw-modal--active {
    display: flex;
  }
}

.fw-modal__content {
  background-color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
}

.fw-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--fw-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  
  &:hover {
    color: var(--fw-primary);
  }
}

/* ============================================
   TABS
   ============================================ */
.fw-tabs {
  margin: 2rem 0;
}

.fw-tabs__nav {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid var(--fw-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.fw-tabs__button {
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--fw-text-secondary);
  transition: all 0.3s ease;
  
  &:hover {
    color: var(--fw-primary);
  }
  
  &.fw-tabs__button--active {
    color: var(--fw-primary);
    border-bottom-color: var(--fw-primary);
  }
}

.fw-tabs__content {
  display: none;
  
  &.fw-tabs__content--active {
    display: block;
  }
}

.fw-tabs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ============================================
   TIMELINE
   ============================================ */
.fw-timeline {
  position: relative;
  padding: 2rem 0;
  
  &::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--fw-border);
  }
}

.fw-timeline__item {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 3rem;
  
  &::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--fw-primary);
    border: 3px solid var(--fw-bg-primary);
  }
}

.fw-timeline__year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fw-primary);
  margin-bottom: 1rem;
}

.fw-event {
  background-color: var(--fw-bg-secondary);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  
  &--past {
    filter: grayscale(100%);
    opacity: 0.6;
    pointer-events: none;
  }
  
  &--upcoming {
    background-color: var(--fw-bg-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.fw-event__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fw-event__date {
  font-size: 0.875rem;
  color: var(--fw-text-secondary);
  margin-bottom: 0.75rem;
}

.fw-event__description {
  color: var(--fw-text-secondary);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.fw-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  
  &.fw-lightbox--active {
    display: flex;
  }
}

.fw-lightbox__image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.fw-lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--fw-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  
  &:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
}

/* ============================================
   INSTRUCTOR LIST
   ============================================ */
.fw-instructors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.fw-instructor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fw-instructor__image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.fw-instructor__name {
  font-weight: 500;
  font-size: 0.875rem;
}

/* ============================================
   BLOG GRID
   ============================================ */
.fw-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fw-article {
  background-color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
}

.fw-article__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fw-article__content {
  padding: 1.5rem;
}

.fw-article__meta {
  font-size: 0.875rem;
  color: var(--fw-text-light);
  margin-bottom: 0.75rem;
}

.fw-article__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  
  a {
    color: var(--fw-text-primary);
    transition: color 0.3s ease;
    
    &:hover {
      color: var(--fw-primary);
    }
  }
}

.fw-article__excerpt {
  color: var(--fw-text-secondary);
  margin-bottom: 1rem;
}

/* ============================================
   ARTICLE SINGLE
   ============================================ */
.fw-article-single {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.fw-article-single__header {
  margin-bottom: 2rem;
}

.fw-article-single__meta {
  font-size: 0.875rem;
  color: var(--fw-text-light);
  margin-bottom: 1rem;
}

.fw-article-single__content {
  line-height: 1.8;
  color: var(--fw-text-primary);
  
  p {
    margin-bottom: 1.5rem;
  }
  
  h2, h3, h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }
}

/* ============================================
   SECTION TITLES
   ============================================ */
.fw-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.fw-section-title__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fw-primary), transparent);
  max-width: 150px;
}

.fw-section-title__text {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--fw-primary);
  letter-spacing: -0.5px;
}

/* ============================================
   HERO ENHANCED
   ============================================ */
.fw-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--fw-bg-primary);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.fw-btn--hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 6px 25px rgba(232, 112, 58, 0.4);
  
  &:hover {
    box-shadow: 0 8px 30px rgba(232, 112, 58, 0.5);
    transform: translateY(-3px);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.fw-about-section {
  padding: 6rem 0;
  background-color: var(--fw-bg-primary);
}

.fw-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.fw-about-image {
  img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

.fw-about-content {
  text-align: left;
  
  p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--fw-text-secondary);
    margin-bottom: 1.5rem;
  }
}

.fw-about-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   COURSES CAROUSEL SECTION
   ============================================ */
.fw-courses-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}

.fw-carousel-wrapper {
  position: relative;
  margin: 3rem 0;
}

/* Splide Customization */
#courses-carousel {
  padding: 0;
}

#courses-carousel .splide__track {
  padding-bottom: 3rem;
}

#courses-carousel .splide__list {
  display: flex;
}

#courses-carousel .splide__slide {
  height: auto;
}

#courses-carousel .splide__arrow {
  background-color: var(--fw-primary);
  opacity: .3;
  width: 3rem;
  height: 3rem;
  
  &:hover {
    background-color: var(--fw-accent);
    opacity: 1;
  }
  
  svg {
    fill: var(--fw-bg-primary);
    width: 1.5rem;
    height: 1.5rem;
  }
  
  &--prev {
    left: -1.5rem;
  }
  
  &--next {
    right: -1.5rem;
  }
}

#courses-carousel .splide__pagination {
  bottom: 0;
}

#courses-carousel .splide__pagination__page {
  background-color: var(--fw-border);
  width: 12px;
  height: 12px;
  margin: 0 0.375rem;
  opacity: 1;
  transition: all 0.3s ease;
  
  &.is-active {
    background-color: var(--fw-primary);
    width: 32px;
    border-radius: 6px;
    transform: none;
  }
  
  &:hover {
    background-color: var(--fw-primary);
    transform: scale(1.2);
  }
}

.fw-course-card {
  background-color: var(--fw-bg-primary);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  
  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
}

.fw-course-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  
  .fw-course-card:hover & {
    transform: scale(1.05);
  }
}

.fw-course-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fw-course-card__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fw-course-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fw-text-primary);
}

.fw-course-card__text {
  color: var(--fw-text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

.fw-course-card__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--fw-text-light);
  margin-bottom: 1rem;
}

.fw-course-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fw-primary);
  margin-top: auto;
}


.fw-courses-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   EVENTS MINI TIMELINE
   ============================================ */
.fw-events-section {
  padding: 6rem 0;
  background-color: var(--fw-bg-primary);
}

.fw-events-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.fw-event-mini {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--fw-bg-secondary);
  border-radius: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  
  &:hover {
    background-color: var(--fw-bg-primary);
    border-left-color: var(--fw-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
  }
}

.fw-event-mini__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
  background-color: var(--fw-primary);
  color: var(--fw-bg-primary);
  border-radius: 0.5rem;
  padding: 1rem;
}

.fw-event-mini__day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.fw-event-mini__month {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.fw-event-mini__content {
  flex: 1;
}

.fw-event-mini__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fw-text-primary);
}

.fw-event-mini__description {
  color: var(--fw-text-secondary);
  line-height: 1.6;
}

.fw-events-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   BLOG GRID HOME
   ============================================ */
.fw-blog-section {
  padding: 6rem 0;
  background-color: var(--fw-bg-secondary);
}

.fw-blog-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.fw-article-card {
  background-color: var(--fw-bg-primary);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  
  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    
    .fw-article-card__image {
      transform: scale(1.1);
    }
  }
}

.fw-article-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fw-article-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fw-article-card__meta {
  font-size: 0.875rem;
  color: var(--fw-text-light);
  margin-bottom: 1rem;
}

.fw-article-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  
  a {
    color: var(--fw-text-primary);
    transition: color 0.3s ease;
    
    &:hover {
      color: var(--fw-primary);
    }
  }
}

.fw-article-card__excerpt {
  color: var(--fw-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.fw-article-card__link {
  color: var(--fw-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  
  &:hover {
    transform: translateX(5px);
  }
}

.fw-blog-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.fw-footer {
  background-color: var(--fw-dark);
  color: var(--fw-bg-primary);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.fw-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.fw-footer__column {
  display: flex;
  flex-direction: column;
}

.fw-footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--fw-primary);
}

.fw-footer__text {
  color: var(--fw-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.fw-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-footer__contact-item {
  color: var(--fw-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  
  i {
    color: var(--fw-primary);
    margin-top: 0.25rem;
    min-width: 20px;
  }
  
  a {
    color: var(--fw-text-light);
    transition: color 0.3s ease;
    
    &:hover {
      color: var(--fw-primary);
    }
  }
}

.fw-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  
  li {
    list-style: none;
  }
  
  a {
    color: var(--fw-text-light);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
    
    &:hover {
      color: var(--fw-primary);
      transform: translateX(5px);
    }
  }
}

.fw-footer__social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fw-footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--fw-bg-primary);
  transition: all 0.3s ease;
  
  &:hover {
    background-color: var(--fw-primary);
    transform: translateY(-3px);
  }
}

.fw-footer__banners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-footer__banner {
  display: block;
  transition: transform 0.3s ease;
  
  &:hover {
    transform: scale(1.05);
  }
  
  img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    
    &:hover {
      opacity: 1;
    }
  }
}

.fw-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--fw-text-light);
  font-size: 0.875rem;
}

.fw-footer__projects-text {
    display: flex;
    gap: 14px;
    margin-top: 1rem;
}
.fw-footer__projects-text img {
    min-width: 50px;
    margin-top: 5px;
}

#eu-details {
    scroll-margin-top: 6rem;
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: background-color 0.3s ease;
}

#eu-details.eu-highlight {
    animation: euHighlight 2s ease-out;
}

@keyframes euHighlight {
    0%, 15% {
        background-color: rgba(232, 112, 58, 0.35);
    }
    30% {
        background-color: transparent;
    }
    45% {
        background-color: rgba(232, 112, 58, 0.25);
    }
    60% {
        background-color: transparent;
    }
    75% {
        background-color: rgba(232, 112, 58, 0.15);
    }
    100% {
        background-color: transparent;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.fw-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.fw-contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fw-contact-block {
  h2 {
    color: var(--fw-primary);
  }
}

.fw-contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  
  i {
    color: var(--fw-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    min-width: 24px;
  }
  
  div {
    flex: 1;
    
    strong {
      color: var(--fw-text-primary);
      font-weight: 600;
      display: block;
      margin-bottom: 0.5rem;
    }
    
    span, a {
      color: var(--fw-text-secondary);
      line-height: 1.6;
    }
    
    a {
      color: var(--fw-primary);
      transition: color 0.3s ease;
      
      &:hover {
        color: var(--fw-accent);
      }
    }
  }
}

.fw-schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--fw-border);
  
  &:last-child {
    border-bottom: none;
  }
  
  strong {
    color: var(--fw-text-primary);
    font-weight: 600;
  }
  
  span {
    color: var(--fw-text-secondary);
  }
}

.fw-contact-form-wrapper {
  h2 {
    color: var(--fw-primary);
    margin-bottom: 2rem;
  }
}

.fw-map-wrapper {
  margin-top: 4rem;
  
  h2 {
    color: var(--fw-primary);
  }
}

.fw-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  iframe {
    width: 100%;
    display: block;
    border: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .fw-nav-desktop {
    display: none;
  }
  
  .fw-burger {
    display: flex;
  }
  
  .fw-events-mini {
    grid-template-columns: 1fr;
  }
  
  .fw-blog-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fw-topbar {
    padding: 0.4rem 0.75rem;
  }

  .fw-topbar__contact,
  .fw-topbar__social {
    display: none;
  }

  .fw-topbar__inner {
    justify-content: center;
  }

  .fw-topbar__ticker {
    margin: 0;
    flex: 1;
    justify-content: center;
  }

  a.fw-ticker__text {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    gap: 0.35rem;
  }

  .fw-ticker__text img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .fw-btn--header {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .fw-hero {
    height: 50vh;
    min-height: 350px;
    margin-top: 110px;
  }
  
  .fw-hero__title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .fw-hero__content {
    p {
      font-size: clamp(0.875rem, 2vw, 1rem);
      margin-bottom: 1.5rem;
    }
  }
  
  .fw-btn--hero {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .fw-section-title__text {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .fw-nav {
    width: 90%;
  }
  
  .fw-section-title {
    gap: 1rem;
    
    &__line {
      max-width: 50px;
    }
  }
  
  #courses-carousel .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
    
    &--prev {
      left: 0.5rem;
    }
    
    &--next {
      right: 0.5rem;
    }
  }
  
  .fw-about-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fw-about-content {
    text-align: center;
    
    p {
      font-size: 1rem;
    }
  }
  
  .fw-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .fw-map {
    iframe {
      height: 350px;
    }
  }
  
  .fw-teaser__grid {
    grid-template-columns: 1fr;
  }
  
  .fw-tabs__nav {
    flex-direction: column;
  }
  
  .fw-timeline {
    &::before {
      left: 1rem;
    }
  }
  
  .fw-timeline__item {
    padding-left: 3rem;
    
    &::before {
      left: 0.5rem;
    }
  }
  
  .fw-blog-grid {
    grid-template-columns: 1fr;
  }
  
  .fw-blog-grid-home {
    grid-template-columns: 1fr;
  }
  
  .fw-event-mini {
    flex-direction: column;
    text-align: center;
  }
  
  .fw-event-mini__date {
    align-self: center;
  }
  
  .fw-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  /* Course cards - stack on mobile */
  .fw-card[style*="grid-template-columns: 300px 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  a.fw-ticker__text {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .fw-ticker__text img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .fw-topbar {
    padding: 0.35rem 0.5rem;
  }

  .fw-container {
    padding: 0 1rem;
  }
  
  .fw-section {
    padding: 2rem 0;
  }
  
  .fw-about-section {
    padding: 3rem 0;
  }
  
  .fw-courses-section {
    padding: 3rem 0;
  }
  
  .fw-events-section {
    padding: 3rem 0;
  }
  
  .fw-blog-section {
    padding: 3rem 0;
  }
  
  .fw-hero {
    height: 45vh;
    min-height: 280px;
  }
  
  .fw-hero__title {
    font-size: 1.5rem;
  }
  
  .fw-hero__content {
    p {
      font-size: 0.875rem;
    }
  }
  
  .fw-btn--hero {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .fw-section-title__text {
    font-size: 1.5rem;
  }
  
  .fw-form {
    padding: 1.5rem;
  }
  
  /* Despre noi - stack images and text on mobile */
  [style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
  
  .fw-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  #courses-carousel .splide__arrow {
    width: 2rem;
    height: 2rem;
    
    svg {
      width: 1rem;
      height: 1rem;
    }
    
    &--prev {
      left: 0.25rem;
    }
    
    &--next {
      right: 0.25rem;
    }
  }
  
  .fw-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fw-map {
    iframe {
      height: 300px;
    }
  }
}
