
:root {
  --primary: #2A2438;
  --secondary: #5C5470;
  --accent: #FF6B6B;
  --text-light: #F8F9FA;
  --text-accent: #FFA5A5;
  --gradient-start: #352F44;
  --gradient-end: #1A1625;
  --form-bg: #3F3A52;
  --success: #4CAF50;
  --warning: #FF9800;
}

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

body {
  font-family: 'Sora', sans-serif;
  background: var(--primary);
  color: var(--text-light);
  line-height: 1.6;
}

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


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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

h2 {
  font-size: 2rem;
  color: var(--text-accent);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-accent);
}

p {
  margin-bottom: 1rem;
}

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

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


.site-header {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-header .uk-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.uk-navbar-container {
  background: transparent !important;
}

.uk-navbar-nav > li > a {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  transition: color 0.3s ease;
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--accent);
}


.uk-offcanvas-bar {
  background: var(--secondary);
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
  color: var(--text-light);
  font-size: 1.2rem;
  padding: 10px 0;
}

.uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: var(--accent);
}


.hero {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(rgba(42, 36, 56, 0.8), rgba(26, 22, 37, 0.9)), url('../images/hero-workshop.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-accent);
}

.hero-description {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: var(--text-light) !important;
  border-radius: 4px;
  font-weight: 600;
  text-transform: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background: #e05858;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #4e4760;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}


.section {
  padding: 4rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--gradient-end);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}


.feature-card {
  background: var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.feature-card-content {
  padding: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}


.course-item {
  background: var(--form-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.course-item:hover {
  transform: translateY(-3px);
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-accent);
}

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

.course-meta i {
  color: var(--accent);
  margin-right: 0.3rem;
}


.calendar {
  background: var(--secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.calendar-header {
  margin-bottom: 1rem;
  text-align: center;
}

.calendar-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calendar-date:last-child {
  border-bottom: none;
}


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

.product-card {
  background: var(--form-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}


.process-steps {
  counter-reset: process-counter;
}

.process-step {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
}

.process-step:before {
  counter-increment: process-counter;
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-step-title {
  margin-bottom: 0.5rem;
  color: var(--text-accent);
}


.contact-form {
  background: var(--form-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--text-light);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

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

.form-check-input {
  margin-right: 0.7rem;
  margin-top: 0.3rem;
}

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


.iti {
  width: 100%;
}


.site-footer {
  background: var(--gradient-start);
  padding: 3rem 0 1rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-accent);
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.cookie-settings-modal {
  background: var(--form-bg);
  border-radius: 8px;
  max-width: 600px;
}

.cookie-category {
  margin-bottom: 1.5rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.cookie-category-description {
  font-size: 0.9rem;
  opacity: 0.8;
}


.progress-container {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 8px;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-bar-container {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 1.5s ease;
}


.circle-progress {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
}

.circle-progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}


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

.gallery-item {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}


.faq-item {
  background: var(--form-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}


.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin: 2rem 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.uk-modal-dialog {
  background: var(--form-bg);
  border-radius: 8px;
}

.uk-modal-header {
  background: var(--secondary);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.uk-modal-title {
  color: var(--text-light);
}

.uk-modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}


.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 2rem;
}

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

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}


.uk-tab {
  margin-left: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.uk-tab > * > a {
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.uk-tab > .uk-active > a {
  color: var(--accent);
  border-color: var(--accent);
}

.uk-tab > * > a:hover {
  color: var(--text-accent);
  border-color: transparent;
}

.tab-content {
  padding: 2rem 0;
}


@media (max-width: 959px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 639px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding-left: 3rem;
  }
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.animate-slide-up {
  animation: slideUp 0.8s ease;
}


.text-accent {
  color: var(--accent);
}

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }