    :root {
      --bg-light: #ffffff;
      --text-light: #000000;
      --bg-dark: #645e58;
      --text-dark: #ffffff;
      --accent: #f2f2f2;
    }
    [data-theme="light"] {
      --bg: var(--bg-light);
      --text: var(--text-light);
    }
    [data-theme="dark"] {
      --bg: var(--bg-dark);
      --text: var(--text-dark);
    }
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      transition: background-color 0.3s, color 0.3s;
    }
    header {
      position: relative;
      top: 0%;
      z-index: 100;
      margin: 20px auto 30px auto;
      max-width: 1500px;
      width: 100%;
      margin: 20px auto 0 auto;
      margin-bottom: 0; 
      box-sizing: border-box;
      background: linear-gradient(rgba(240,230,218), rgba(255,255,255,0.85));
      color: #222;
      border-radius: 10px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1px 32px;
      gap: 20px;
      backdrop-filter: blur(4px);
      border: 1px solid #d3cdc6;
    }
    [data-theme="dark"] header {
    background: linear-gradient(to bottom, #3a3530 1%, #645e58 100%);
    border: 2px solid #bba98a;
    }
    .logo {
      font-size: 2em;
      text-align: center;
      font-weight: bold;
      letter-spacing: 2px;
      color: #a07500c0;
      background: none;
      border: none;
      margin-right: 30px;
    }
    nav.desktop-menu {
      display: flex;
      gap: 30px;
      flex: 1;
      justify-content: center;
    }
    nav.desktop-menu a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.5rem;
      padding: 6px 14px;
      border-radius: 8px;
      transition: background 0.2s, color 0.2s;
    }
    [data-theme="dark"] nav.desktop-menu a {
    color: #fff;
    }
    [data-theme="dark"] nav.desktop-menu a:hover {
    color: #b6acac;
    background: #3a3530;
    }
    nav.desktop-menu a:hover {
      background: #f2e6d9;
      color: #a07500c0;
    }
    nav.desktop-menu a.active {
    background: none;
    color: #a07500;
    border-bottom: 3px solid #645e58;
    border-radius: 0;
    }
    [data-theme="dark"] nav.desktop-menu a.active {
    background: none;
    color: #b6acac;
    border-bottom: 3px solid #b6acac;
    border-radius: 0;
    }
    .controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 20px;
    }
    .language-select {
      display: flex;
      gap: 6px;
    }
    .language-select button,
    .theme-toggle {
      background: none;
      border: 1px solid #a07500c0;
      color: #a07500c0;
      border-radius: 5px;
      padding: 5px 12px;
      cursor: pointer;
      font-weight: bold;
      font-size: 1rem;
      transition: background 0.2s, color 0.2s;
      min-width: 40px;
    }
    .language-select button:hover,
    .theme-toggle:hover {
      background: #f2e6d9;
      color: #333;
    }
    .menu-toggle {
      display: none;
    }

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0 0.5rem;
  }
  nav.desktop-menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    display: none;
  }
  .menu-toggle {
    display: block;
    font-size: 3.1rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
}
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 99999;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    right: 0;
    left: 0;
    padding: 2rem 0 2.5rem 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-size: 1.6rem;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu a {
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 1.5rem;
    padding: 20px 24px;
    font-weight: bold;
    border-radius: 1px;
    transition: background 0.2s, color 0.2s, font-size 0.2s;
    letter-spacing: 1px;
  }
  
  .mobile-menu a:hover,
  .mobile-menu a.active {
    background: #f2e6d9;
    color: #a07500c0;
  }
  [data-theme="dark"] .mobile-menu {
    background: #eeedec;
  }
  [data-theme="dark"] .mobile-menu a:hover,
  [data-theme="dark"] .mobile-menu a.active {
    background: #b6acac;
    color: #3a3031;
  }
  main {
    padding: 0 14px 16px 14px !important;
    border-radius: 14px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12), 0 1.5px 8px rgba(0,0,0,0.8);
  }
  .controls {
    gap: 6px !important;
  }
  .home-images-vertical {
    display: flex;
    gap: 0.5rem;

  }
  .home-images-vertical .image-label-wrap{
    grid-column: vertical;
    width: 100%;
    max-width: 220px;
    height: 220px;
  }
  .image-label-wrap img {
    width: 100%;
    height: auto;
    max-width: 220px;
    min-height: 120px;
    object-fit: cover;
  }
  .home-row {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: 100%;
    max-width: 100%;
  }
  .home-text {
    width: 90% !important;
    font-size: 1.4rem;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
  }
@media (max-width: 600px) {
  header {
    border-radius: 0 0 18px 18px;
    max-width: 100vw;
    padding: 0 0;
    margin: 0 0 0 0;
  }
  nav.desktop-menu a {
    font-size: 1.1em;
  }
  .theme-toggle {
    min-width: 0 !important;
    max-width: 40px !important;
    width: 36px !important;
    flex: 0 0 auto !important;
    padding: 4px 0 !important;
    font-size: 1.0rem !important;
    border-radius: 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .controls {
    gap: 6px !important;
  }
  main {
    padding: 0 8px 12px 8px !important;
    border-radius: 10px;
  }
}
  main {
    max-width: 1500px;
    width: 100%;
    margin: 10px auto 0 auto;
    padding: 10px 10px 10px 10px !important;
    background: var(--bg);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    min-height: 250px;
    border: 1px solid #d3cdc6;
    font-size: 1.85rem;
    line-height: 1.7;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    flex: 1 0 auto;
    }
    [data-theme="dark"] main {
    border: 2px solid #bba98a;
    }
    .social-icons a {
      margin: 0 0.3rem;
      color: #a07500c0;
      text-decoration: none;
      font-size: 1.3rem;
}
    
    .social-icons a:hover {
      color: #333;
      text-decoration: underline;
    }
    html, body {
    height: 100%;
    margin: 0.15rem;
    padding: 0;
    }
    body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }
    footer {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    background: none;
    }
    .language-select button.active {
    background: #f2e6d9;
    color: #333;
    border-color: #333;
    }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 99999;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  right: 0;
  left: 0;
  padding: 2rem 0 2.5rem 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  font-size: 1.6rem;
}

.mobile-menu a {
  color: #333;
  text-decoration: none;
  font-size: 1.3rem;
  padding: 10px 24px;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: #f2e6d9;
  color: #a07500c0;
}
[data-theme="dark"] .mobile-menu a:hover,
[data-theme="dark"] .mobile-menu a.active {
  background: #3a3530;
  color: #b6acac;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 2rem auto;
}
.contact-form label {
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  padding: 8px;
  border: 1px solid #d3cdc6;
  border-radius: 5px;
  font-size: 1.1rem;
  font-family: inherit;
}
.contact-form button {
  background: #a07500c0;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #a07500;
}
.contact-form .h-captcha {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
.home-center, 
.about-center, 
.gallery-center, 
.contact-center {
  text-align: center;
  font-size: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.home-center h1,
.about-center h1,
.gallery-center h1,
.contact-center h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.gallery-buttons button {
  background: none;
  color: #333;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 6px 14px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
[data-theme="dark"] .gallery-buttons button {
 color: #fff;
}
[data-theme="dark"] .gallery-buttons button:hover {
  color: #b6acac;
  background: #3a3530;
 }
 .gallery-buttons button:hover {
   background: #f2e6d9;
   color: #a07500c0;
 }
 .gallery-buttons button.active {
    background: none;
    color: #a07500;
    border-bottom: 3px solid #645e58;
    border-radius: 0;
    }
[data-theme="dark"] .gallery-buttons button.active {
    background: none;
    color: #b6acac;
    border-bottom: 3px solid #b6acac;
    border-radius: 0;
    }
.home-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
}
.image-label-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.image-label-wrap img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}
.img-label {
  position: absolute;
  bottom: 2%;
  left: 25%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 0.95rem;
  padding: 2px 10px;
  border-radius: 8px;
  pointer-events: none;
  font-family: inherit;
}
.home-images-vertical .image-label-wrap:hover img {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: scale(1.04);
}

.about-center {
  font-size: 1.4rem;
  line-height: 1.7;
}
.boxed-1{
  border: 0.25px solid #bba98a;
  border-radius: 6px;
  padding: 0.25rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.boxed-2{
  border: 0.25px solid #bba98a;
  border-radius: 6px;
  padding: 0.25rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.contact-social {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}
.contact-social a {
  color: #a07500c0;
  margin: 0 0.3rem;
  text-decoration: none;
}
.contact-social a:hover {
  color: #333;
  text-decoration: underline;
}
.contact-social i.fa-instagram {
  color: #e4405f;
}
.contact-social i.fa-facebook {
  color: #1877f3;
}
.contact-social i.fa-tiktok {
  color: #010101;
}
.enlarge-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1)
}
.enlarge-modal.active {
  display: flex;
  opacity: 1;
  animation: modalFadeIn 0.35s cubic-bezier(.4,0,.2,1);
}
.enlarge-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  background: #fff;
}
.enlarge-modal:after {
  content: "✕";
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.enlarge-modal img {
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.enlarge-modal.active img {
  transform: scale(1);
}
.enlarge-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40,40,40,0.7);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 0 18px;
  cursor: pointer;
  z-index: 2002;
  border-radius: 10px;
  user-select: none;
}
.enlarge-label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 18px;
  border-radius: 10px;
  z-index: 2002;
  pointer-events: none;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}
.gallery-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.gallery-grid img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
