
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;600&display=swap');


:root {
  --color-primary: #8B5A2B;
  --color-secondary: #D2B48C;
  --color-accent: #4A6741;
  --color-bg-primary: #F8F4E9;
  --color-bg-secondary: #E8E0CC;
  --color-text-dark: #2D2A24;
  --color-text-light: #F9F6F0;
  --color-alert: #C75146;
  --color-shadow: rgba(113, 89, 64, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-standard: all 0.3s ease;
  --shadow-soft: 6px 6px 12px var(--color-shadow), 
                -6px -6px 12px rgba(255, 255, 255, 0.8);
  --shadow-inset: inset 4px 4px 8px var(--color-shadow),
                 inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

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

h1 {
  font-size: 4.2rem;
  font-weight: 700;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
}


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

.section {
  padding: 8rem 0;
}


.clay-card {
  background: var(--color-bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-standard);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.clay-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 16px var(--color-shadow), 
              -8px -8px 16px rgba(255, 255, 255, 0.9);
}

.clay-button {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-standard);
  display: inline-block;
  text-align: center;
}

.clay-button:hover {
  box-shadow: 4px 4px 8px var(--color-shadow), 
              -4px -4px 8px rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.clay-button:active {
  box-shadow: var(--shadow-inset);
  transform: translateY(0);
}

.clay-button.primary {
  background: var(--color-primary);
  color: var(--color-text-light);
}

.clay-button.accent {
  background: var(--color-accent);
  color: var(--color-text-light);
}

.clay-input {
  width: 100%;
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-inset);
  font-family: var(--font-body);
  font-size: 1.6rem;
  transition: var(--transition-standard);
  margin-bottom: 2rem;
}

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

.clay-textarea {
  min-height: 12rem;
  resize: vertical;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg-primary);
  box-shadow: 0 4px 12px var(--color-shadow);
  padding: 1.5rem 0;
}

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

.logo {
  height: 5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  color: var(--color-text-dark);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 3rem;
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 0.8rem 0;
  display: inline-block;
  position: relative;
  transition: var(--transition-standard);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}


.hero {
  padding-top: 12rem;
  padding-bottom: 8rem;
  background-color: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/workshop-interior.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 60rem;
}

.hero-title {
  font-size: 5.6rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

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

.hero-buttons {
  display: flex;
  gap: 2rem;
}


.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }


.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 3rem;
  margin: 4rem 0;
}

.dashboard-item {
  min-height: 25rem;
  position: relative;
  overflow: hidden;
}

.dashboard-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.dashboard-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
  transition: var(--transition-standard);
}

.dashboard-item:hover .dashboard-image {
  transform: scale(1.05);
  opacity: 0.9;
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
  z-index: 0;
}

.dashboard-text {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: var(--color-text-light);
}

.dashboard-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}


.features {
  padding: 8rem 0;
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 3px;
  background-color: var(--color-accent);
}

.feature-item {
  text-align: center;
  padding: 3rem;
}

.feature-icon {
  font-size: 4.8rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.feature-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}


.gallery {
  padding: 8rem 0;
  background-color: var(--color-bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  height: 25rem;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-standard);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--color-text-light);
  transform: translateY(100%);
  transition: var(--transition-standard);
}

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


.skills {
  padding: 8rem 0;
}

.skill-item {
  margin-bottom: 4rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.skill-name {
  font-weight: 600;
}

.skill-bar {
  height: 1rem;
  background-color: var(--color-bg-secondary);
  border-radius: 5rem;
  overflow: hidden;
  box-shadow: var(--shadow-inset);
}

.skill-progress {
  height: 100%;
  background-color: var(--color-accent);
  border-radius: 5rem;
  width: 0;
  transition: width 1.5s ease-in-out;
}


.contact {
  padding: 8rem 0;
  background-color: var(--color-bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.contact-text {
  font-size: 1.6rem;
}

.contact-form {
  width: 100%;
}

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

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.checkbox-input {
  margin-right: 1rem;
}

.form-submit {
  width: 100%;
}


.map-container {
  width: 100%;
  height: 40rem;
  margin-top: 4rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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


.footer {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.footer-logo {
  height: 5rem;
  margin-bottom: 2rem;
}

.footer-description {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

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

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 1rem;
}

.footer-link a {
  color: var(--color-text-light);
  transition: var(--transition-standard);
}

.footer-link a:hover {
  color: var(--color-secondary);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.footer-contact-icon {
  margin-right: 1.5rem;
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 120rem;
  background-color: var(--color-bg-primary);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-settings {
  background: none;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cookie-modal-content {
  width: 90%;
  max-width: 60rem;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--color-bg-primary);
  border-radius: var(--border-radius-md);
  padding: 3rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--color-text-dark);
}

.cookie-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-bg-secondary);
}

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

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

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 3rem;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg-secondary);
  transition: var(--transition-standard);
  border-radius: 3rem;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 2.2rem;
  width: 2.2rem;
  left: 0.4rem;
  bottom: 0.4rem;
  background-color: white;
  transition: var(--transition-standard);
  border-radius: 50%;
}

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

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

input:checked + .toggle-slider:before {
  transform: translateX(3rem);
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}


.text-center {
  text-align: center;
}

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

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


.iti {
  width: 100%;
}


.thanks-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem;
}

.thanks-icon {
  font-size: 8rem;
  color: var(--color-accent);
  margin-bottom: 3rem;
}

.thanks-title {
  font-size: 4.2rem;
  margin-bottom: 2rem;
}

.thanks-text {
  font-size: 2rem;
  max-width: 60rem;
  margin-bottom: 4rem;
}


@media (max-width: 1200px) {
  html {
    font-size: 60%;
  }
  
  .dashboard-grid {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero-title {
    font-size: 4.8rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 30rem;
  }
  
  .col-md-6 {
    grid-column: span 6;
  }
  
  .col-md-12 {
    grid-column: span 12;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  
  .header-container {
    padding: 0 2rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-bg-primary);
    overflow: hidden;
    transition: var(--transition-standard);
    box-shadow: 0 4px 12px var(--color-shadow);
  }
  
  .nav.active {
    height: auto;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 2rem;
  }
  
  .nav-item {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    padding: 1.5rem;
    width: 100%;
    display: block;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-item.large {
    grid-column: auto;
    grid-row: auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .col-sm-6 {
    grid-column: span 6;
  }
  
  .col-sm-12 {
    grid-column: span 12;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 54%;
  }
  
  .hero-title {
    font-size: 4.2rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .col-xs-12 {
    grid-column: span 12;
  }
}