/* =============================================
   De Luxe Group — Main Stylesheet
   ============================================= */

/* ---------- Google Fonts + Reset ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --color-black:        #111111;
  --color-black-light:  #2b2b2b;
  --color-gray-dark:    #4a4a4a;
  --color-yellow:       #fccb06;
  --color-yellow-light: #fde073;
  --color-red:          #e63946;
  --white:              #ffffff;
  --off-white:          #f8f9fa;
  --gray-100:           #f1f3f5;
  --gray-200:           #e9ecef;
  --text-dark:          var(--color-black);
  --text-gray:          #495057;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(17,17,17,.10);
  --shadow-md:    0 6px 24px rgba(17,17,17,.15);
  --shadow-lg:    0 16px 48px rgba(17,17,17,.20);
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container      { max-width: 90%; margin: 0 auto; padding: 0 1.5rem; }
.section-pad    { padding: 90px 0; }
.text-center    { text-align: center; }
.text-gold      { color: var(--color-yellow); }
.text-black     { color: var(--color-black); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-yellow);
  background: rgba(252,203,6,.12);
  padding: .3rem .9rem;
  border-radius: 99px;
  margin-bottom: .9rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

/* Placeholder for missing images */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-black), var(--color-gray-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  user-select: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn-primary:hover { background: var(--color-black); color: #fff; border-color: var(--color-black); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}
.btn-gold:hover { background: var(--color-yellow-light); border-color: var(--color-yellow-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(252,203,6,.35); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-sm { padding: .5rem 1.1rem; font-size: .83rem; }

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--color-black);
  transition: left .25s, right .25s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-black); background: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after { left: .9rem; right: .9rem; }

.nav-admin-btn {
  padding: .5rem 1.1rem;
  background: var(--color-black);
  color: #fff !important;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-admin-btn:hover { background: var(--color-black-light) !important; }
.nav-admin-btn::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border-radius: 6px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-black); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: .2rem;
  z-index: 998;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .7rem 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 7px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--off-white); color: var(--color-black); }

/* ---------- Hero Banner (Static) ---------- */
#home { padding-top: 70px; }

.hero-banner {
  position: relative;
  min-height: calc(100vh - 70px);
  max-height: 860px;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem 1.5rem;
}
.hero-content .slide-label {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-black);
  background: #ffffff;
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-weight: 700;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}
.hero-btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero-banner { min-height: 75vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ---------- About Section ---------- */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p { color: var(--text-gray); margin-bottom: 1rem; font-size: .97rem; }
.about-text h3 { font-family: 'Playfair Display', serif; color: var(--color-black); margin: 1.5rem 0 .5rem; font-size: 1.2rem; }
.about-text ul li {
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  color: var(--text-gray);
  font-size: .95rem;
}
.about-text ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--color-yellow);
}

.about-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--color-black);
  transition: var(--transition);
}
.value-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--color-black); margin-bottom: .4rem; }
.value-card p  { font-size: .88rem; color: var(--text-gray); }

/* Mission Cards */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ms-card { background: #fff; border: 1px solid transparent; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); border-color: transparent; }
.ms-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.ms-card .ms-letter {
  width: 42px; height: 42px;
  background: transparent;
  border: 2px solid var(--color-yellow);
  color: var(--color-black);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}
.ms-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; color: var(--color-black); }
.ms-card p  { font-size: .88rem; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ---------- Products Preview Section ---------- */
#products { background: var(--gray-100); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-card-img {
  width: 100%; height: 260px;
  overflow: hidden;
  position: relative;
}
.product-card-img img  { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img .img-placeholder { font-size: 2rem; }

.product-card-body { padding: 1.4rem; }
.product-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  border-radius: 99px;
  margin-bottom: .6rem;
}
.product-card-body p  { font-size: .87rem; color: var(--text-gray); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- News / Blog Section ---------- */
#news { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.news-card-img {
  width: 100%; height: 240px;
  overflow: hidden;
  position: relative;
}
.news-card-img img  { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-img .img-placeholder { font-size: 1.8rem; background: var(--off-white); color: var(--color-black); }

.news-card-body { padding: 1.4rem; }
.news-date { font-size: .78rem; color: var(--color-yellow); font-weight: 600; margin-bottom: .5rem; display: flex; align-items: center; gap: .3rem; }
.news-card-body p  { font-size: .87rem; color: var(--text-gray); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-read-more {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .9rem;
  font-size: .85rem; font-weight: 600;
  color: var(--color-black);
  transition: gap .2s;
}
.news-read-more:hover { gap: .6rem; }

/* ---------- Process Section ---------- */
#process {
  background: var(--gray-100);
  color: var(--color-black);
}
#process .section-label { background: rgba(230,57,70,.1); color: var(--color-red); }
#process .section-title { color: var(--color-black); }
#process .section-sub   { color: var(--text-gray); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,.05), transparent);
  opacity: 0;
  border-radius: var(--radius);
  transition: opacity .3s;
  pointer-events: none;
}
.process-step:hover { background: #fff; transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.process-step:hover::before { opacity: 1; }

@media (min-width: 900px) {
  .process-step:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: -1.3rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px; height: 12px;
    border-top: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
    opacity: 0.6;
    z-index: 10;
  }
}

.process-img-wrap {
  position: relative;
  display: inline-flex;
  width: 85px;
  height: 85px;
  margin-bottom: 1.25rem;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid var(--gray-200);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.process-icon { font-size: 2.2rem; color: var(--color-red); }
.process-img-wrap .process-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2px solid var(--color-red);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.process-step h4 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--color-black); }
.process-step p  { font-size: .85rem; color: var(--text-gray); line-height: 1.6; }

/* ---------- Footer ---------- */
footer {
  background: var(--gray-100);
  color: var(--text-dark);
  padding: 60px 0 0;
  border-top: 1px solid var(--gray-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}
.footer-about p { font-size: .88rem; opacity: .8; margin-bottom: 1.25rem; line-height: 1.7; }

.footer-col h4 { color: var(--color-black); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { font-size: .88rem; opacity: .8; transition: opacity .2s; }
.footer-links a:hover { opacity: 1; color: var(--color-yellow); }

.footer-contact li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; opacity: .85; margin-bottom: .7rem;
}
.footer-contact li .fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

.social-links { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(17,17,17,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-black);
}
.social-btn:hover { background: var(--color-yellow); color: var(--color-black); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  opacity: .75;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ---------- Products Full Page ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--gray-100), #ffffff);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--color-black);
  border-bottom: 1px solid var(--gray-200);
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: .5rem; }
.breadcrumb   { font-size: .83rem; color: var(--text-gray); margin-bottom: .5rem; font-weight: 500; }
.breadcrumb a { color: var(--color-yellow); text-decoration: none; }

.products-full { padding: 70px 0; background: var(--gray-100); }
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* ---------- News Full Page ---------- */
.news-full { padding: 70px 0; }
.news-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ---------- News Detail ---------- */
.news-detail-article {
  padding: 70px 0;
  max-width: 820px;
  margin: 0 auto;
}
.news-detail-article h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.news-detail-article .article-meta { color: var(--text-gray); font-size: .87rem; margin-bottom: 2rem; }
.news-detail-article .article-img  { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; max-height: 440px; }
.news-detail-article .article-img img { width: 100%; height: 440px; object-fit: cover; }
.news-detail-article .article-body p { margin-bottom: 1.2rem; color: var(--text-gray); line-height: 1.85; font-size: .97rem; }
.news-detail-article .article-body strong { color: var(--text-dark); }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 2rem; color: var(--color-black); font-weight: 600; font-size: .9rem; transition: gap .2s; }
.back-link:hover { gap: .7rem; }

/* ---------- Section divider ---------- */
.divider { width: 60px; height: 4px; background: var(--color-yellow); border-radius: 2px; margin: .8rem auto 2rem; }
.divider-left { margin-left: 0; }

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-grid  { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-values  { grid-template-columns: repeat(3, 1fr); }
  .mission-grid  { grid-template-columns: repeat(2, 1fr); }
  .av-grid       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .product-grid  { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .carousel-wrapper { height: 90vh; }
  .hero-banner { min-height: 75vh; }
  .hero-content h1 { font-size: 1.9rem; }
  .footer-bottom { text-align: center; flex-direction: column; }
  .section-pad { padding: 60px 0; }
  .about-values  { grid-template-columns: 1fr; }
  .mission-grid  { grid-template-columns: 1fr; }
  .av-grid       { grid-template-columns: 1fr; }
  .about-card    { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .products-full-grid, .news-full-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-content .slide-label { font-size: .7rem; }
  .hero-content h1 { font-size: 1.65rem; }
}




