/* ---- Theme variables (colors) ---- */
:root {
  --header-height: 100px;

  --page-bg: #f6f7f6;
  --navbar-bg: #eeefee;
  --text: #2a2b28;
  --muted: #676865;
  --accent: #a5b29d;
  --accent-dark: #869180;
  --surface: #ffffff;
  --surface-alt: #f3f4f3;
  --border: #e2e3e2;
  --thumb-bg: #f1f2f1;
  --caption: #767874;
  --icon-bg: #e9ebe9;
  --icon-fg: #869180;
  --border-soft: #e0e1e0;
  --surface-tint: #f6f7f6;
  --badge-bg: #edf0ed;
  --accent-grad: #97a28f;

  --white: #fff;
  --black: #000;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family:'Baloo 2', cursive ;
  line-height:1.6;
  color: var(--text);
  background: var(--page-bg);
  padding-top: var(--header-height); /* This creates safe space below fixed header */
}
h1,h2,h3 { 
  font-family:'Baloo 2', cursive; font-weight:600;  ; 
  text-shadow: 0 0 0.6px currentColor; /* Faux bold effect */
}
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
a { text-decoration:none; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position:fixed;
  top:0; left:0; width:100%;
  z-index:1000;
  background: var(--navbar-bg); /* semi-transparent */
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center; /* vertical centering inside */
}
.nav-container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 32px;
  height:100%;
}
.nav-brand { 
  font-size:1.5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: -128px;
}
.nav-brand .logo {
  height: calc(var(--header-height) - 12px);
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-brand:hover { opacity: 0.9; }    
.nav-menu { display:flex; gap:3rem; list-style:none;  align-items: center;}
.nav-menu a {
  color: var(--text);
  transition:.3s;
  font-size: 1.3rem;
  font-weight: 600; 
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--accent); }

.logo-wrap {
  height: calc(var(--header-height) plus - 2px); /* slightly smaller than header */
  width: 360px;                /* pick a fixed width */
  overflow:hidden;
  display:flex;
}
.logo-crop {
  width:100%;
  height:100%;
  object-fit: cover;           /* covers + crops */
  object-position: center 35%; /* adjust vertical focus: 0% top, 100% bottom */
}

/* =========================================================
   HERO (30% / 70%) + SLIDER
   ========================================================= */
.hero-split {
  display:grid; grid-template-columns:30% 70%; align-items:center;
  gap:2rem; padding:0 40px;
}
.hero-text h2 { font-size:2.2rem; margin-bottom:1rem; }
.hero-text p { font-size:1rem; margin-bottom:1.8rem; color: var(--muted); }
.btn {
  display:inline-block; padding:.8rem 2rem; border-radius:8px;
  background: var(--accent); color: var(--white); font-weight: 600; 
  font-size:1.1rem;
  text-shadow: 0 0 0.5px rgba(0,0,0,0.3); /* Faux bold effect */
  transition:.3s;
}
.btn:hover { background: var(--accent-dark); }

.hero-frame {
  position:relative; height:75vh; border-radius:12px;
  overflow:hidden; background: var(--black); padding:0;
}
.hero-track { display:flex; height:100%; transition:transform .8s ease-in-out; will-change: transform;}
.hero-track img {
  flex:0 0 100%; width:100%; height:100%; object-fit:cover; object-position:center;
  filter:brightness(.92);
}
.hero-controls {
  position:absolute; bottom:20px; right:24px; display:flex; gap:14px; z-index:2;
}
.hero-controls button {
  width:44px; height:44px; border:2px solid var(--accent); background:none;
  border-radius:50%; font-size:1.4rem; 
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
  color: var(--accent);
  cursor:pointer; transition:.3s;
}
.hero-controls button:hover { background: var(--accent); color: var(--white); }

/* =========================================================
   ABOUT / GENERIC TEXT BLOCK
   ========================================================= */
.about-home { padding:60px 20px; background: var(--surface-alt); }
.about-home p {
  font-size:1.1rem; color: var(--muted); text-align:center;
  max-width:900px; margin:0 auto;
}
.about-home strong {
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}

/* =========================================================
   HOMEPAGE CATEGORY TEASERS
   ========================================================= */
.home-portfolio { padding:80px 20px; }
.section-title {
  font-size:2.4rem; text-align:center; margin-bottom:2.5rem; position:relative;
}
.section-title::after {
  content:''; display:block; width:60px; height:3px; background: var(--accent);
  margin:1rem auto 0;
}
.category-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2rem;
}
.category-card { position:relative; overflow:hidden; border-radius:12px; cursor:pointer; }
.category-card img {
  width:100%; height:260px; object-fit:cover; transition:transform .3s;
}
.category-card:hover img { transform:scale(1.05); }
.category-overlay {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.5); color: var(--white); font-size:1.5rem; 
  text-shadow: 0 0 0.5px rgba(0,0,0,0.5); /* Faux bold effect */
  opacity:0; transition:.3s;
}
.category-card:hover .category-overlay { opacity:1; }

/* =========================================================
   ABOUT PAGE / PROFILE / SERVICES
   ========================================================= */
.about-owner {
  display:flex; flex-wrap:wrap; align-items:center; gap:2rem; padding:100px 20px;
}
.owner-img {
  width:200px; height:200px; object-fit:cover; border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.owner-bio { flex:1; }
.about-highlight { 
  margin-top:1.5rem; 
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
  color: var(--accent); 
}

.services { padding:80px 20px; background: var(--surface-alt); }
.services-intro {
  max-width:800px; margin:0 auto 2rem; text-align:center; color: var(--muted);
}
.service-card {
  max-width:600px; margin:1.5rem auto; padding:1.5rem;
  background: var(--surface); border-radius:12px;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
}
.service-card h3 { margin-bottom:1rem; }
.service-card p { color: var(--muted); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-page { padding:80px 20px; background: var(--surface); }
.testimonial {
  max-width:700px; margin:1.5rem auto; background: var(--thumb-bg); padding:1.5rem;
  border-radius:12px; font-style:italic; position:relative;
}
.testimonial strong { 
  display:block; margin-top:1rem; text-align:right; font-style:normal; 
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}

/* =========================================================
   CONTACT + FAQ ACCORDION
   ========================================================= */
.contact-page { padding:80px 20px; background: var(--surface); }

/* Contact page layout with QR */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.contact-details {
  flex: 1 1 320px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact-details p + p { margin-top: 1rem; }

.map-link {
  display: inline-block;
  margin-top: .5rem;
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
  color: var(--accent);
  position: relative;
  transition: color .3s;
}

.map-link:hover { color: var(--accent-dark); }

.contact-qr {
  flex: 0 0 240px;
  text-align: center;
}

.contact-qr figure { margin: 0; }

.contact-qr img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  background: var(--surface);
  padding: 12px;
}

.contact-qr figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--caption);
}

/* Styles for Callback Form */
.callback-form-container {
    padding: 60px 20px;
    background: var(--surface-alt);
    text-align: center;
    border-radius: 12px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.callback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.callback-form input {
    padding: 0.8rem 1rem;
    font-family: 'Baloo 2', cursive ;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 100%;
}
.callback-form input:focus {
    outline: 2px solid var(--accent);
    border-color: var(--accent);
}
#form-message {
    margin-top: 1rem;
    min-height: 1.2em;
    text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}


/* Responsive */
@media (max-width: 700px) {
  .contact-flex { flex-direction: column; align-items: stretch; }
  .contact-qr { align-self: center; }
}

.faq-page { padding:80px 20px; background: var(--surface-alt); }
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); margin-bottom:.5rem; }
.faq-question {
  cursor:pointer; padding:1rem 0; position:relative; 
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}
.faq-question::after {
  content:'+'; position:absolute; right:0; font-size:1.2rem; transition:.3s;
  text-shadow: none; /* Remove faux bold from icon */
}
.faq-item.open .faq-question::after { content:'–'; }
.faq-answer {
  display:none; padding:.5rem 0 1rem; color: var(--muted); line-height:1.5;
}
.faq-item.open .faq-answer { display:block; }

/* =========================================================
   GALLERY PAGE (3-COLUMN MASONRY, ONE CATEGORY AT A TIME)
   ========================================================= */
.gallery-wrapper { padding-bottom:60px; }
.page-title {
  text-align:center; font-size:2.8rem; margin:0 0 1.2rem; letter-spacing:.5px;
}
.gallery-nav { text-align:center; margin:0 0 2.2rem; }
.gallery-nav .gal-tab {
  background:none; border:2px solid var(--accent); color: var(--accent);
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
  padding:.55rem 1.4rem; margin:0 .6rem .6rem;
  cursor:pointer; border-radius:30px; font-family: 'Baloo 2', cursive ; font-size:.95rem;
  letter-spacing:.5px; transition:.3s;
}
.gallery-nav .gal-tab:hover { background: var(--accent); color: var(--white); }
.gallery-nav .gal-tab.active {
  background: var(--accent); color: var(--white); box-shadow:0 2px 6px rgba(0,0,0,.15);
}

/* Masonry columns */
.masonry {
  column-count:3;
  column-gap:1.5rem;
}
.masonry img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1.5rem;
  border-radius: 10px;
  background: var(--thumb-bg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;

}
.masonry img:hover {
  transform:translateY(-4px);
  box-shadow:0 6px 18px rgba(0,0,0,.18); 
}

/* Lightbox */
.lightbox-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,.8);
  display:none; justify-content:center; align-items:center;
  z-index:2000; padding:2rem;
}
.lightbox-img {
  width:75%; max-height:75%; object-fit:contain;
  border-radius:12px; box-shadow:0 0 25px rgba(0,0,0,.45);
}
.lightbox-close {
  position:absolute; top:2%; right:2%;
  font-size:2.5rem; color: var(--white); cursor:pointer; line-height:1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--text); color: var(--white); text-align:center;
  padding:2rem 20px; margin-top:4rem; font-size:.9rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1000px) {
  .hero-split { grid-template-columns:1fr; text-align:center; }
  .hero-frame { height:60vh; }
  .masonry { column-count:2; }
}
@media (max-width: 600px) {
  :root { --header-height: 110px; }
  .nav-container { padding: 0 20px; }
  .nav-brand .logo { height: calc(var(--header-height) - 18px); }
}

@media (max-width:768px) {
  .category-grid { grid-template-columns:1fr; }
  .category-card img { height:200px; }
  .masonry { column-count:1; }
  .page-title { font-size:2.2rem; }
  .gallery-nav .gal-tab { padding:.5rem 1rem; margin:.4rem .4rem; }
  .about-owner { flex-direction:column; text-align:center; }
}

/* Floating contact buttons */
.floating-contact {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1200; /* above slider & content, below lightbox (if needed raise) */
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, background .25s;
  position: relative;
}

.fab svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Specific colors */
.fab-whatsapp { background:#25D366; }
.fab-phone    { background: var(--accent); }

/* Hover effects */
.fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,.32);
}

/* Focus accessibility */
.fab:focus {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Smaller screens – shrink a bit */
@media (max-width:600px){
  .fab { width:50px; height:50px; }
  .fab svg { width:26px; height:26px; }
  .floating-contact { bottom:14px; right:14px; gap:10px; }
}
/* ===== Fancy Contact Block ===== */
.fancy-contact {
  background: linear-gradient(135deg, var(--white) 0%, var(--white) 55%, var(--surface-tint) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2.2rem 2.1rem 2.4rem;
  box-shadow: 0 6px 22px -8px rgba(0,0,0,.12);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: fc-fade .6s ease;
}

.fancy-contact::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,165,116,.18), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(212,165,116,.12), transparent 65%);
  pointer-events:none;
  z-index:-1;
}

@keyframes fc-fade {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

.contact-intro .kicker {
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.84rem;
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
  color: var(--accent);
  background: var(--badge-bg);
  padding:.35rem .7rem .32rem;
  border-radius:999px;
  margin-bottom:.9rem;
}

.contact-intro .headline {
  font-size:1.9rem;
  line-height:1.2;
  margin:0 0 .85rem;
  font-family:'Baloo 2', cursive ;
  color: var(--text);
}

.contact-intro .sub {
  font-size:1.02rem;
  max-width:34ch;
  color: var(--muted);
  margin:0 0 1.4rem;
}

.contact-list {
  list-style:none;
  margin:0 0 1.8rem;
  font-weight: 600; 
  padding:0;
  display:grid;
  gap:.9rem;
}

.contact-list li {
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  font-size:.98rem;
  line-height:2.5;
  color: var(--text);
}

.contact-list a {
  color: var(--text);
  border-bottom:1px solid transparent;
  transition:color .3s, border-color .3s;
  word-break:break-word;
  font-size: 1.05rem;
  text-shadow: 0 0 0.5px currentColor; /* Faux bold effect */
}
.contact-list a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.contact-list .icon {
  flex:0 0 34px;
  width:34px; height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: var(--icon-bg);
  color: var(--icon-fg);
  box-shadow:0 2px 6px rgba(0,0,0,.08) inset;
  position:relative;
  top:2px;
}

.contact-list .icon svg {
  width:18px; height:18px;
  display:block;
}

.social-cta { margin-top:.4rem; }

.insta-cta {
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  text-shadow: 0 0 0.5px rgba(0,0,0,0.3); /* Faux bold effect */
  letter-spacing:.5px;
  font-size:.85rem;
  text-transform:uppercase;
  padding:.85rem 1.25rem;
  border-radius:50px;
  background:linear-gradient(90deg, var(--accent), var(--accent-grad));
  color: var(--white);
  position:relative;
  overflow:hidden;
  transition:box-shadow .35s, transform .35s;
}

.insta-cta::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(255,255,255,.25),rgba(255,255,255,0) 60%);
  opacity:0;
  transition:opacity .4s;
}

.insta-cta:hover {
  transform:translateY(-3px);
  box-shadow:0 8px 20px -6px rgba(0,0,0,.28);
}
.insta-cta:hover::after { opacity:1; }

.insta-icon svg {
  width:20px; height:20px; display:block;
}

.insta-cta .arrow {
  font-size:1.1rem;
  margin-left:.2rem;
  transition:transform .35s;
}
.insta-cta:hover .arrow { transform:translateX(4px); }

/* Responsive tweaks */
@media (max-width:700px) {
  .contact-intro .headline { font-size:1.7rem; }
  .fancy-contact { padding:1.9rem 1.5rem 2.2rem; }
  .contact-list { gap:.8rem; }
}
@media (max-width:430px) {
  .contact-intro .headline { font-size:1.55rem; }
  .insta-cta { font-size:.78rem; padding:.75rem 1.05rem; }
  .insta-icon svg { width:18px; height:18px; }
}

/* Nav horizontal scroll on very small widths */
@media (max-width: 768px) {
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff; /* or var(--navbar-bg) */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}
  
.nav-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 16px 10px;
  gap: 14px;
}

.nav-brand,
.logo-wrap {
  margin: 0 !important;
  width: auto !important;
  max-width: clamp(200px, 60vw, 300px) !important; /* Consolidated from two separate rules */
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-crop {
  top: -30%;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}
  
.navbar .nav-menu,
.nav-menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  white-space: nowrap;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}
.navbar .nav-menu > li,
.nav-menu > li {
  list-style: none !important;
  flex: 1 0 20% !important;
  min-width: 0 !important;
}
  
.navbar .nav-menu > li > a,
.nav-menu > li > a {
  display: block !important;
  text-align: center !important;
  padding: 8px 2px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  color: var(--text, #222) !important;
  text-decoration: none;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.nav-menu a:hover {
  color: var(--accent, #b98a68);
  background: transparent !important;
}

body {
  padding-top: 130px !important; /* adjust if header looks too tall/short */
  }
}
@media (max-width: 1300px) {
.category-overlay {
    opacity: 1;
}
}
@media (min-width: 769px) and (max-width: 1300px) {
  .nav-brand {
    margin-left: 0; /* 'left' is not a valid value, so I've used '0' */
  }
}
.fancy-contact,
.contact-list li {
  overflow: visible; /* ensure no hidden text */
}

.contact-list li {
  align-items: flex-start;
  line-height: 2.28;
  flex-wrap: wrap;
  word-break: break-word;
}
