
:root {
  --primary-bg: #121212;
  --secondary-bg: #1E1E1E;
  --text-color: #F5F5F5;
  --primary-accent: #D4AF37;
  --secondary-accent: #8A6D3B;
  --highlight: #E6C158;
  --dark-surfaces: #242424;
  --card-bg: #2A2A2A;
  --footer-bg: #0A0A0A;
  --border-color: #333333;
  --error-color: #FF6B6B;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--primary-bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.uk-form-label {
  color: var(--text-color);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-accent);
  position: absolute;
  bottom: -10px;
  left: 0;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--highlight);
  text-decoration: none;
}

.uk-button {
  text-transform: none;
  font-weight: 500;
  border-radius: 0;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.uk-button-primary {
  background-color: var(--primary-accent);
  color: var(--primary-bg);
  border: 2px solid var(--primary-accent);
}

.uk-button-primary:hover {
  background-color: transparent;
  color: var(--primary-accent);
}

.uk-button-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
}

.uk-button-secondary:hover {
  background-color: var(--text-color);
  color: var(--primary-bg);
}


.site-header {
  background-color: rgba(18, 18, 18, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  max-height: 50px;
  width: auto;
}

.main-nav .uk-navbar-nav > li > a {
  color: var(--text-color);
  font-size: 16px;
  text-transform: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  color: var(--primary-accent);
  font-weight: 500;
}

.nav-phone i {
  margin-right: 8px;
}


.uk-offcanvas-bar {
  background-color: var(--secondary-bg);
}

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

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

.uk-offcanvas-close {
  color: var(--primary-accent);
}


.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  padding: 120px 0 60px;
  position: relative;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: 3.5rem;
}

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


.section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background-color: var(--secondary-bg);
}

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

.section-title h2 {
  display: inline-block;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}


.about-image {
  height: 400px;
  object-fit: cover;
  width: 100%;
  border: 4px solid var(--border-color);
}

.about-content {
  padding: 0 20px;
}


.service-card {
  background-color: var(--card-bg);
  padding: 30px;
  height: 100%;
  border-left: 4px solid var(--primary-accent);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-accent);
  margin-bottom: 20px;
}


.gallery-container {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}


.apprentice-card {
  background-color: var(--card-bg);
  padding: 40px;
  border-top: 4px solid var(--primary-accent);
}


.sales-process {
  margin-top: 40px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.step-number {
  background-color: var(--primary-accent);
  color: var(--primary-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
}


.contact-form-section {
  background-color: var(--dark-surfaces);
  padding: 60px 0;
}

.form-container {
  background-color: var(--card-bg);
  padding: 40px;
  border-right: 4px solid var(--primary-accent);
}

.uk-input,
.uk-textarea,
.uk-select {
  background-color: var(--primary-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: 0;
}

.uk-input:focus,
.uk-textarea:focus,
.uk-select:focus {
  background-color: var(--primary-bg);
  color: var(--text-color);
  border-color: var(--primary-accent);
}

.uk-checkbox {
  margin-right: 8px;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: var(--primary-bg);
}

.iti__country-list {
  background-color: var(--card-bg);
  color: var(--text-color);
  border-color: var(--border-color);
}

.iti__country:hover {
  background-color: var(--dark-surfaces);
}


.footer {
  background-color: var(--footer-bg);
  padding: 60px 0 30px;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 20px;
}

.footer-heading {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-accent);
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-accent);
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  margin-top: 40px;
}

.footer-links a {
  margin-right: 20px;
  color: var(--text-color);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-accent);
}

.copyright {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.7);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--card-bg);
  padding: 20px;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--border-color);
}

.cookie-content {
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-preferences-container {
  background-color: var(--card-bg);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-category {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 24px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
  background-color: var(--primary-accent);
}

input:focus + .cookie-toggle-slider {
  box-shadow: 0 0 1px var(--primary-accent);
}

input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-toggle.disabled {
  pointer-events: none;
  opacity: 0.6;
}

.cookie-settings-link {
  color: var(--text-color);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings-link:hover {
  color: var(--primary-accent);
}




.technique-card {
  background-color: var(--card-bg);
  padding: 30px;
  margin-bottom: 30px;
  border-right: 4px solid var(--primary-accent);
}

.technique-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
}


.schedule-card {
  background-color: var(--card-bg);
  padding: 40px;
  margin-bottom: 30px;
}

.schedule-table {
  width: 100%;
}

.schedule-table th,
.schedule-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
  text-align: left;
  font-weight: 500;
}

.appointment-info {
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--primary-accent);
  padding: 20px;
  margin-top: 30px;
}


.contact-map {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-info-card {
  background-color: var(--card-bg);
  padding: 30px;
  height: 100%;
  border-top: 4px solid var(--primary-accent);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-item i {
  margin-right: 15px;
  color: var(--primary-accent);
  font-size: 1.2rem;
  margin-top: 5px;
}


.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 60px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--primary-accent);
  margin-bottom: 30px;
}

.thanks-content h1 {
  margin-bottom: 20px;
}


.legal-container {
  padding: 120px 0 60px;
}

.legal-content {
  background-color: var(--card-bg);
  padding: 40px;
}

.legal-content h2 {
  text-align: left;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p, .legal-content ul {
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 10px;
}

.legal-date {
  font-style: italic;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 30px;
}


@media (max-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .about-image {
    height: 300px;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .uk-button {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
  
  .service-card, 
  .technique-card, 
  .schedule-card,
  .contact-info-card,
  .apprentice-card {
    padding: 20px;
  }
}