body{
font-family:
Helvetica,
Arial,
sans-serif;
margin:0;
background:#f0ebe3;
color: #4A3F3A;
font-size:18px;
letter-spacing: 0.1em;
}

@media (max-width: 768px) {
body{
font-size:14px;
letter-spacing: normal;
}
}

body a,
body a:visited,
body a:active{
color: #4A3F3A;
}

body a:hover{
color: #bd5f34;
text-decoration: underline;
}

.site-header{
display:block;
justify-content:space-between;
padding:0;
text-align:right;
}

.langswitcher a,
.langswitcher a:active,
.langswitcher a:visited,
.langswitcher a.active{
font-size:20px;
color:white;
text-decoration:none;
display:inline-block;
padding:10px;
margin-top:10px;
}

.langswitcher a:hover{
color:white;
text-decoration:none;
background:#3a1f1a;
}

.hero {
padding-top:0;
padding-bottom:10vh;
background-image: url('../images/header_back.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: block;
align-items: center;
justify-content: center;
text-align: center;
}
.hero .slogan-text
{
color: white;
letter-spacing: 0.2em;
font-size:24px;
margin-top:20px;
}
img.hero-logo{
display:block;
margin:20px auto 0 auto;
max-width: 800px;
width: 80%;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  font-size: 14px;
  color: #666;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 6px;
  color: #aaa;
}

.breadcrumbs a,
.breadcrumbs a:visited,
.breadcrumbs a:active {
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs li:last-child {
  color: #221111;
  font-weight: 600;
}

main{
max-width:1400px;
margin:0 auto;
padding: 0 15px 0 15px;
text-align: justify;
}

main h2 {
font-weight: normal;
text-transform: uppercase;
display: flex;
align-items: center;
text-align: center;
gap: 20px;
white-space: nowrap;
font-size: 1.2
}

main h2::before,
main h2::after {
content: "";
flex: 1;
border-top: 1px solid currentColor;
}

@media (max-width: 768px) {
main h2 {
display: block;
white-space: normal;
text-align: left;
}

main h2::before,
main h2::after {
display: none;
}
}

.buttonlink,
.buttonlink:active,
.buttonlink:visited {
display: inline-block;
padding: 12px 25px;
border-radius: 15px;
background: #7B3F00;
color: #fff;
text-decoration: none;
font-weight: bold;
font-family: 'Arial', sans-serif;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.buttonlink:hover {
background: #A0522D;
color: #fff;
text-decoration: none;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.site-footer{
padding: 0 0 10px 0;
}

/* custom css fixes */
/* make gslide overlay dark on mobile devices to make text more visible*/
@media (max-width: 768px) {
.gslide-description {
background: rgba(0, 0, 0, 0.9) !important;
color: #fff !important;
}
}

/* adjust mobile font to make overlay smaller */
.glightbox-mobile .glightbox-container .gslide-description {
font-size: 14px
padding-bottom 10px !important
}

/* less paddings to make overlay not that big*/
.glightbox-clean .gdesc-inner {
padding:7px 5px
}

/* override fonts */
.promo-text {
letter-spacing: 0.15em !important;
font-weight: 400 !important;
text-shadow:
0 0 2px rgba(35, 15, 10, 1),
0 0 8px rgba(35, 15, 10, 1),
0 0 12px rgba(35, 15, 10, 1),
0 0 15px rgba(0, 0, 0, 1);
}

/* === NAVIGATION ===*/
.nav-wrapper {
position:sticky;
top:0;
z-index: 8000;
}

/* desktop */
.desktop-menu {
display: flex;
justify-content: center;
background: #f3eee8; /* soft warm beige */
border-top: 1px solid #d8cfc5;
border-bottom: 1px solid #d8cfc5;
padding: 0;
text-align: center;
background: linear-gradient(
to right,
#fff4ea 0%,     /* left */
#f3eee8 35%,    /* center */
#f3eee8 65%,    /* center */
#fff4ea 100%    /* right */
);
}

.desktop-menu ul {
display: flex;
gap: 30px;
list-style: none;
margin:0;
padding:0;
}

.desktop-menu ul li {
position: relative;
}

/* links style */
.desktop-menu ul li a {
display: block;
position: relative;
text-decoration: none;
color: #5b4636; /* chocolate brown */
font-size: 15px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 12px;
transition: all 0.3s ease;
}
.desktop-menu ul li.active a {
text-decoration: underline;
transition: all 0.3s ease;
}
.desktop-menu ul li a:hover {
background-color: #5b4636; /* chocolate brown */
color:#f3eee8;
}
/* Dropdown (hidden) */
.desktop-menu ul li ul {
position: absolute;
top: 99%;
left: 0;
display: none;
min-width: 220px;
background: #fff;
padding: 0;
margin: 0;
list-style: none;
box-shadow: 0 6px 15px rgba(0,0,0,0.1);
border: 1px solid #3a1f1a;
}

.desktop-menu ul li ul li {
display: block;
}

.desktop-menu ul li ul li a {
text-align: left;
}

.desktop-menu ul li:hover > ul {
display: block;
}


/* mobile */
.mobile-menu {
text-align: left;
position: absolute;
left:0;
top:0;
transition: all 0.5s ease;
}

.mobile-menu.scrolled {
width: 100%;
height: 45px;
background: linear-gradient(
to bottom,
rgba(240, 235, 227, 1) 0%,
rgba(240, 235, 227, 1) 60%,
rgba(240, 235, 227, 0) 100%
);
}

.mobile-menu #menu-toggle{
position: absolute;
left:0;
top:0;
background: transparent;
color: white;
font-size: 30px;
transition: all 0.3s ease;

/* look like simple text on IOS*/
appearance: none;
-webkit-appearance: none;
background: none;
border: none;
padding: 5px;
margin: 0;
cursor: pointer;
}

.mobile-menu.scrolled  #menu-toggle{
color: #3a1f1a;
font-size: 20px;
}

.mobile-menu #mobile-menu-list {
margin-top:40px;
display: none;
background: #d8cfc5;
list-style: none;
padding:0px;
max-height: 90dvh;
overflow-y: auto;
z-index: 1000;
}

.mobile-menu.scrolled #mobile-menu-list {
margin-top:28px;
}

.mobile-menu ul#mobile-menu-list.active {
display: block;
}

.mobile-menu ul#mobile-menu-list li {
display: block;
}

.mobile-menu ul#mobile-menu-list li ul {
display:block;
list-style: none;
padding:0;
}

/* links style */
#mobile-menu-list li a {
display: block;
text-decoration: none;
color: #5b4636; /* chocolate brown */
font-size: 18px;
letter-spacing: 2px;
text-transform: uppercase;
text-align: left;
padding: 10px;
border-top: 1px dotted #c0b2a2;
}

#mobile-menu-list li ul li a {
padding-left:30px;
font-size: 14px;
}

/* responsive switches */
@media (max-width: 768px) {

.desktop-menu {
display: none; /* hide desktop menu */
}

.mobile-menu {
display: block;
}
}

@media (min-width: 769px) {

.desktop-menu {
display: flex;
}

.mobile-menu {
display: none; /* hide hamburger */
}
}

/* ===== blog styles ===== */
/* grid */
.blog-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 20px;
padding: 20px;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}
}

/* Desktop: 3 columns */
@media (min-width: 1024px) {
.blog-grid {
grid-template-columns: repeat(3, 1fr);
}
}

/* one post card */
.blog-grid .card {
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
height: 100%;
}

.blog-grid .card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-grid .card a {
display: block;
color: inherit;
text-decoration: none;
height: 100%;
}

.blog-grid .card img {
width: 100%;
height: 200px;
object-fit: cover;
display: block;
}

.blog-grid .card-content {
padding: 15px;
display: flex;
flex-direction: column;
gap: 8px;
}

.blog-grid .date {
font-size: 12px;
color: #888;
font-weight: 500;
}

.blog-grid .card h3 {
margin: 0;
font-size: 18px;
line-height: 1.3;
}

.blog-grid .excerpt {
font-size: 14px;
color: #555;
line-height: 1.5;
}

/*** order-modal ***/
.order-btn {
  background: #4A3F3A;
  color: #f0ebe3;
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.order-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.order-link {
  color: #4A3F3A;
  border-bottom: 1px dashed rgba(74, 63, 58, 0.6);
  text-decoration: none;
  cursor: pointer;
}

.order-link:hover {
  opacity: 0.8;
}

.order-modal {
  position: fixed;
  inset: 0;
  background: rgba(74, 63, 58, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hidden {
  display: none;
}

.order-modal-content {
  background: #f0ebe3;
  width: 92%;
  max-width: 600px;
  border-radius: 18px;
  padding: 10px;
  max-height: 95vh;
  overflow-y: auto;
  animation: pop 0.2s ease;
}

.order-modal-content h3 {
  margin: 0 0 8px 0;
}

.order-modal-content p {
  margin: 0 0 6px 0;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4A3F3A;
}

.close {
  font-size: 30px;
  cursor: pointer;
  float:right;
}

.order-product {
  margin: 10px 0 18px;
  color: #4A3F3A;
  font-size: 14px;
  opacity: 0.8;
}

.order-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.btn,
.btn:visited,
.btn:active {
  position: relative;
  padding: 8px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  text-align: center;
  transition: 0.2s;
  line-height: 20px;
}

.btn:hover {
  text-decoration: none;
  color: white;
}

.btn::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.btn.wa {
  background: linear-gradient(135deg, #0c8037, #1ebe5d);
}

.btn.wa::before {
  background: url('../images/wa_icon.png') no-repeat center / contain;
}

.btn.fb {
  background: linear-gradient(135deg, #093369, #0f5bd3);
}

.btn.fb::before {
  background: url('../images/fb_icon.png') no-repeat center / contain;
}

.btn.ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.btn.ig::before {
  background: url('../images/ig_icon.png') no-repeat center / contain;
}


.btn.tg {
  background: linear-gradient(135deg, #0e4863, #1b8cc5);
}

.btn.tg::before {
  background: url('../images/tg_icon.png') no-repeat center / contain;
}

.btn.vb {
  background: linear-gradient(135deg, #383069, #5b4de0);
}

.btn.vb::before {
  background: url('../images/vb_icon.png') no-repeat center / contain;
}

.btn.call {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  font-size: 14px;
}

.btn.call::before {
  background: url('../images/call_icon.png') no-repeat center / contain;
}

.btn:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

@keyframes pop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .order-modal-content {
    border-radius: 16px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .order-btn {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9999;
  }
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin: 6px 0;
  background: linear-gradient(135deg, #4A3F3A, #2f2622);
  font-size: 18px;
}

#contactForm textarea:focus,
#contactForm input:focus {
  outline: none;
}

#contactForm textarea,
#contactForm input {
  width: 100%;

  padding: 5px;
  border-radius: 8px;
  border: 1px solid #221111;

  background: #ffffff;
  color: #4A3F3A;
  transition: all 0.2s ease;

  font-family: inherit;
  font-size: 12px;
  box-sizing: border-box;
}

#contactForm textarea {
  min-height: 110px;
  line-height: 1.4;
  resize: vertical;
}

#contactForm input {
  margin-bottom: 6px;
}

#contactForm textarea::placeholder {
  color: rgba(74, 63, 58, 0.5);
}