/* =========================
   ROOT VARIABLES
========================= */
:root {
  --black: #0d0d0d;
  --yellow: #f5c400;
  --white: #ffffff;
}

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--yellow);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 40px;
}

/* =========================
   NAVIGATION
========================= */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-header.scrolled .main-nav a {
  color: var(--black);
}

/* =========================
   BURGER MENU
========================= */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: var(--white);
}

.site-header.scrolled .burger span {
  background: var(--black);
}

/* =========================
   SECTIONS
========================= */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
}

.section h2 {
  color: var(--yellow);
  margin: 2rem 0 1rem;
}

/* =========================
   FULL-WIDTH IMAGE STRIPS
========================= */
.section-strip {
  width: 100vw;
  height: 260px;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.section-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================
   SHOP
========================= */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.shop-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.shop-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 900;
  color: var(--yellow);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shop-card:hover .shop-text {
  opacity: 1;
}

/* =========================
   WORK WITH ME
========================= */
.work-with-me ul {
  margin: 1.5rem 0;
}

/* =========================
   CTA BUTTON
========================= */
.cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 2rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.socials img {
  width: 20px;
  height: 20px;
}

/* =========================
   FADE IN ANIMATION
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE NAVIGATION
========================= */
@media (max-width: 768px) {

  .burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .site-header.scrolled .main-nav {
    background: var(--yellow);
  }

  .site-header.scrolled .main-nav a {
    color: var(--black);
  }

  .section-strip {
    height: 180px;
  }
}

/* =========================
   CLICK SAFETY
========================= */
.burger,
.lang-toggle {
  position: relative;
  z-index: 1001;
}

.lang-toggle {
  background: none;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 0.4rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
}

/* Language toggle – default (top of page) */
.lang-toggle {
  background: none;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

/* Language toggle – when header is scrolled */
.site-header.scrolled .lang-toggle {
  border-color: var(--black);
  color: var(--black);
}
#sumup-modal {
  position: fixed;
  inset: 0;
  background: #f9f7f4; /* match tuathan tone */
  z-index: 9999;
  display: none;
}

#sumup-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sumup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}
/* =========================
   LIGHTBOX GALLERY
========================= */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 2.5rem;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Hide arrows on small screens (swipe instead) */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-weight: 800;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-hint {
  opacity: 1;
}
/* =========================
   GALLERY – ROW MODE
========================= */
.gallery.row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.gallery.row::-webkit-scrollbar {
  height: 6px;
}

.gallery.row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.gallery.row .gallery-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

.gallery.row img {
  height: 240px;
  object-fit: cover;
}

