/*
Theme Name: Lumiere
Author: Creatif Desain
Author URI: https://creatif.biz.id
Description: Custom theme for Lumiere
Version: 1.0
*/


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

:root {
  --text-color: #333;
  --heading-color: #222;
  --muted-color: #777;
}


.site-wrapper {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto,
    "Helvetica Neue", Arial,
    "Noto Sans", sans-serif;
}


body {

  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  font-weight: 400;
  letter-spacing: 0.2px;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  color: var(--heading-color);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.6em;
  letter-spacing: 0.3px;
}

/* Size scale */
h1 {
  font-size: 2.45rem;
  /* 44px */
}

h2 {
  font-size: 2rem;
  /* 32px */
}

h3 {
  font-size: 1.5rem;
  /* 24px */
}

h4 {
  font-size: 1.25rem;
  /* 20px */
}

h5 {
  font-size: 1.125rem;
  /* 18px */
}

h6 {
  font-size: 1rem;
  /* 16px */
}


p {
  margin: 0 0 1.2em;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
  /* 14px */
  color: var(--muted-color);
}

ul,
ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}

ul li,
ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

/* Optional clean style */
ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

/* Nested list */
li ul,
li ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}



blockquote {
  margin: 2em 0;
  padding-left: 1.5em;
  border-left: 3px solid #c5a27a;
  color: #555;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 3em 0;
}


.wp-block-paragraph {
  margin-bottom: 1.2em;
}

.wp-block-heading {
  margin-bottom: 0.8em;
}

.wp-block-list li {
  margin-bottom: 0.5em;
}


@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}




img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

/* ===== HEADER ===== */
.site-header {
  background: #000;
  
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 20px;
  font-weight: 500;
}

.main-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}


.main-nav .menu {
  display: flex;
  gap: 0;
}

.main-nav .menu li {
  list-style: none;
}

.main-nav .menu li a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.main-nav .menu li a:hover {
  color: #ccc;
}

/* ===== FIX HEADER MENU WORDPRESS ===== */

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

/* Reset UL bawaan WP */
.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

/* LI */
.main-nav ul li {
  margin: 0;
  padding: 0;
}

/* LINK */
.main-nav ul li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

/* Hover & active */
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item>a {
  color: #ccc;
}





.btn {
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #6b5253;
  color: #ffffff;
  background: #6b5253;
}

.btn-light {
  background: #fff;
  color: #333;
}

.btn-dark {
  background: #6f5b4b;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  height: 80vh;
  background: url("https://picsum.photos/1600/900?random=20") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 25px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-image img {
  border-radius: 50%;
}

/* ===== SPACES ===== */
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.space-card {
  position: relative;
}

.space-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 16px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.gallery-small {
  display: grid;
  gap: 30px;
}

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card a {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  text-decoration: none;
  color: #666;
}

/* ===== PROJECTS ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  padding: 60px 0 20px;
  font-size: 14px;
  color: #fff;
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 60px;
}

.footer-bottom {
  text-align: left;
  font-size: 14px;
  margin-top: 40px;

  border-top: 1px solid #0a0a0a;
  padding-top: 10px;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}


.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;

  color: #fff;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}


@media (min-width: 768px) {
  .footer-brand {
    padding-right: 100px
  }
}


@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .footer-brand,
  .footer-menu,
  .footer-contact {
    text-align: left;
  }

  .footer-contact-list li {
    align-items: flex-start;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 16px;
  }
}


@media (max-width: 768px) {

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* SPACE */
  .space-grid {
    grid-template-columns: 1fr;
  }

  /* PRODUCTS */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* PROJECTS */
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}






/* ===============================
   HAMBURGER BUTTON
================================ */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1002;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===============================
   OVERLAY
================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* ===============================
   MOBILE SLIDE MENU
================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #fff;
  padding: 100px 30px 40px;
  transition: right 0.4s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* MENU LIST */
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 24px;
  list-style: none;
}

.mobile-menu li a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* CTA */
.mobile-cta {
  text-align: center;
  padding: 14px;
  border-radius: 30px;
}

/* ===============================
   ACTIVE STATE
================================ */
.menu-open .mobile-nav {
  right: 0;
}

.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   HAMBURGER → CLOSE
================================ */
.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav,
  .header-cta {
    display: none;
  }
}