
:root {
  --primary-bg: #FFFFFF;
  --secondary-bg: #F5F5F5;
  --primary-text: #000000;
  --secondary-text: #333333;
  --accent-color: #C9A34A;
  --very-light-gray: #EEEEEE;
  --light-gray: #CCCCCC;
  --medium-gray: #999999;
  --dark-gray: #666666;
  --very-dark-gray: #444444;
  --border-color: #E0E0E0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

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

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

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--light-gray);
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

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

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

button, .uk-button {
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.uk-section {
  padding: 60px 0;
}

.uk-section-small {
  padding: 40px 0;
}

.uk-section-large {
  padding: 80px 0;
}

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


.site-header {
  background-color: var(--primary-bg);
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .uk-navbar-container {
  background-color: transparent;
}

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

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

.site-header .uk-navbar-dropdown {
  background-color: var(--primary-bg);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: 4px;
}

.site-header .uk-navbar-dropdown-nav > li > a {
  color: var(--primary-text);
  transition: color 0.3s ease;
}

.site-header .uk-navbar-dropdown-nav > li > a:hover {
  color: var(--accent-color);
}

.site-header .uk-navbar-toggle {
  color: var(--primary-text);
}

.site-header .uk-navbar-toggle:hover {
  color: var(--accent-color);
}


.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--very-dark-gray);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--primary-bg);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}


.uk-accordion-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-text);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.uk-accordion-title:hover {
  color: var(--accent-color);
}

.uk-accordion-content {
  padding: 15px 0 30px;
}


.feature-block {
  padding: 30px;
  background-color: var(--primary-bg);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: 4px;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-block:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.uk-card {
  height: fit-content;
}


.portfolio-grid .uk-card {
  background-color: var(--primary-bg);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-grid .uk-card:hover {
  transform: translateY(-5px);
}

.portfolio-grid .uk-card-media-top img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.portfolio-grid .uk-card:hover .uk-card-media-top img {
  filter: grayscale(0%);
}


.contact-form .uk-input,
.contact-form .uk-textarea,
.contact-form .uk-select {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 15px;
  transition: border-color 0.3s ease;
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus,
.contact-form .uk-select:focus {
  border-color: var(--accent-color);
  outline: none;
}

.contact-form .uk-checkbox {
  margin-right: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}


.site-footer {
  background-color: var(--very-dark-gray);
  color: var(--primary-bg);
  padding: 60px 0 30px;
}

.site-footer h3 {
  color: var(--primary-bg);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.site-footer a {
  color: var(--light-gray);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.site-footer .uk-list li {
  margin-bottom: 10px;
}

.site-footer .uk-icon-button {
  background-color: transparent;
  color: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.site-footer .uk-icon-button:hover {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 20px;
  margin-top: 40px;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-bg);
  box-shadow: 0 -5px 15px var(--shadow-color);
  padding: 20px;
  z-index: 9999;
}

.cookie-settings-modal {
  background-color: var(--primary-bg);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.cookie-settings-modal h2 {
  margin-bottom: 20px;
}

.cookie-settings-modal .uk-checkbox {
  margin-right: 10px;
}


.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.legal-content p {
  margin-bottom: 15px;
}


.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

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


.iti {
  width: 100%;
}


@media (max-width: 959px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .uk-section {
    padding: 40px 0;
  }
}

@media (max-width: 639px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.15rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .uk-section {
    padding: 30px 0;
  }
}