/* --- RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root{
  --accent: #2596be;
  --bg:#0f1014;
  --white:#ffffff;
  --muted:rgba(255,255,255,0.68);
  --muted2:rgba(255,255,255,0.52);
}
body{
  background:var(--bg);
  color:var(--white);
  overflow-x:hidden;
  font-family:'Open Sans',sans-serif;
}
.container{
  max-width:1120px;
  margin:0 auto;
  padding:0 22px;
}

/* --- HEADER --- */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 50px;
  background:transparent;
  position:absolute;
  width:100%;
  z-index:1000;
}
/* ==========================
   LOGO (IMAGE + TEXT)
   ========================== */
/* --- HEADER --- */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 14px;              /* tighter = closer to corners */
  background:transparent;
  position:absolute;
  width:100%;
  z-index:1000;
}

/* ==========================
   LOGO (HEADER: IMAGE ONLY)
   ========================== */
.logo{
  display:flex;
  align-items:center;
  gap:0;
  margin:0;
  padding:0;

  /* important: prevents logo from forcing spacing */
  flex:0 0 auto;
}

.logo-mark{
  width:130px;                    /* bigger on desktop */
  height:auto;
  display:block;
  object-fit:contain;

  /* optional: micro nudge closer to corner */
  margin-left:-15px;
  margin-top:-45px;
}

/* ✅ keep code but hide it (so you don’t delete it) */
.logo-text{
  display:none;
}

/* --- NAV LINKS --- */
.nav-links{ display:flex; gap:30px; }
.nav-links a{
  text-decoration:none;
  color:rgba(255,255,255,0.60);
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  transition:color .2s;
}
.nav-links a:hover, .nav-links a.active{
  color:var(--white);
  text-decoration:underline;
  text-underline-offset:6px;
}
.social-icons{ display:flex; gap:10px; }
.social-icons a{
  width:50px;height:50px;
  background:var(--accent);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  font-size:.8rem;
  transition:transform .2s;
}

.social-icons a:hover{ transform:scale(1.08); }
.menu-toggle{
  display:none;
  font-size:3.0rem;
  cursor:pointer;
  background:none;
  border:none;
  color:#fff;

  /* nudge the button upward */
  transform: translateY(-8px);
  transition: transform .18s ease;
}
/*.social-icons{*/
/*  align-self:flex-start;*/
/*  margin-top:1px;*/
/*}*/


/* ==========================
   MOBILE
   ========================== */
@media (max-width: 900px){
  .navbar{ padding:8px 10px; }

  .logo-mark{
    width:105px;                  /* bigger on phone but not crazy */
    margin-left:-25px;
    margin-top:-50px;
  }

  .social-icons{ display:none; }
  .menu-toggle{ display:block; }
}


/* --- HERO --- */
.hero{
  position:relative;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5%;
  background:radial-gradient(circle at 70% 50%, #1a1a1a 0%, #000 70%);
  overflow:hidden;
  height:100vh;
  height:100svh;
}

/* ✅ overlay hook for mobile blend */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2; /* above image, below text */
  opacity:0;
}

.hero-content{ max-width:520px; z-index:3; position:relative; }
.tagline{
  color:var(--accent);
  font-weight:800;
  font-size:.95rem;
  letter-spacing:2px;
  margin-bottom:18px;
  text-transform:uppercase;
  display:inline-block;
}
/*.tagline::before{*/
/*  content:'';*/
/*  display:inline-block;*/
/*  width:22px;height:2px;*/
/*  background:var(--accent);*/
/*  vertical-align:middle;*/
/*  margin-right:10px;*/
/*}*/
.hero-content h1{
  font-family:'Montserrat',sans-serif;
  font-size:4rem;
  line-height:1.05;
  margin-bottom:18px;
  font-weight:800;
}
.subtext{
  color:rgba(255,255,255,0.65);
  font-size:1.1rem;
  margin-bottom:34px;
}

/* =========================
   CTA BUTTONS (FIXED GRID)
   ========================= */





/* ==========================
   CTA BUTTONS (FINAL FIX)
   Desktop: 4 in one row
   Mobile: 2x2 grid
   ========================== */

/*/!* Desktop default *!*/
.cta-buttons{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(900px, 100%);
  margin-top: 24px;
  justify-content: center;
  align-items: center;
}

/* Base button */
.btn-primary{
  background: var(--accent);
  color:#fff;
  border:1px solid transparent;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  font-size: clamp(.88rem, 1.15vw, 1rem);
  line-height:1;
  cursor:pointer;
  transition:transform .2s, background .2s, border-color .2s, box-shadow .2s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;

  height:48px;
  width:100%;
  min-width:0;
}

/* Hover */
.btn-primary:hover{
  transform:translateY(-1px);
  background:#000;
  border-color: rgba(255,255,255,0.22);
}

/* Outline style (blue-themed) */
.btn-primary.btn-primary-outline{
  background: rgb(37, 150, 190) !important;
  border: 1px solid rgb(37, 150, 190) !important;
  color:#fff !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.btn-primary.btn-primary-outline:hover{
  background: rgb(24, 169, 220) !important;
  border-color: rgb(37, 150, 190) !important;
}

/* Friday pink */
/*.btn-primary.btn-friday{*/
/*  background: linear-gradient(180deg, rgba(255, 79, 216, 0.92), rgba(255, 79, 216, 0.92));*/
/*  border: 1px solid rgba(255, 110, 230, 0.65);*/

/*}*/
.btn-primary.btn-friday{
  background: linear-gradient(180deg, rgba(255, 79, 216, 0.92), rgba(255, 79, 216, 0.92));
  border: 1px solid rgba(255, 110, 230, 0.65);
  box-shadow: 0 8px 30px rgba(255,79,216,0.18), 0 2px 8px rgba(255,79,216,0.22) inset;
  text-shadow: 0 2px 8px rgba(255,79,216,0.06);
  transition: box-shadow .18s ease, transform .18s ease, background .18s ease;
}
.btn-primary.btn-friday:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(255,79,216,0.28), 0 4px 14px rgba(255,79,216,0.30) inset;
}

/* ✅ Mobile: FORCE 2x2 */
@media (max-width: 768px){
  .cta-buttons{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 0 12px;
    width: 100%;
  }

  .btn-primary{
    height: 46px;
    font-size: .92rem;
    padding: 12px 14px;
  }

  /* Ensure outline buttons keep their blue style on small screens */
  .btn-primary.btn-primary-outline{
    background: rgb(37, 150, 190) !important;
    border-color: rgb(37, 150, 190) !important;
    color: #fff !important;
  }
}


/* Hero image desktop */
.hero-image{
  position:absolute;
  right:0; top:0;
  height:100%;
  width:60%;
  z-index:1;
}
.hero-image img{
  width:100%; height:100%;
  object-fit:cover;
  mask-image:linear-gradient(to right, transparent 0%, black 50%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 50%);
}
.hero-divider{
  position:absolute;
  bottom:0; left:0;
  width:100%;
  height:80px;
  background:#fff;
  clip-path:polygon(0 100%, 100% 100%, 100% 0);
  z-index:5;
}

/* --- FEATURES STRIP --- */
.features-strip{
  background:#fff;
  padding:34px 0 52px;
}
.features-inner{
  display:flex;
  gap:18px;
  align-items:stretch;
  justify-content:center;
}
.feature-card{
  flex:1 1 0;
  min-width:220px;
  background:#0f1014;
  color:#fff;
  border-radius:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}
.feature-icon{
  width:52px;height:52px;
  border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background: rgb(37, 150, 190);
  color:var(--accent);
  margin-bottom:14px;
  font-size:1.2rem;
}
.feature-card h3{
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:1.2rem;
  margin-bottom:10px;
}
.feature-card p{
  color:rgba(255,255,255,0.72);
  font-size:1.05rem;
  line-height:1.45;
}

/* ✅ Minimal copyright only */
.copyright{
  background:#0b0c10;
  color:rgba(255,255,255,0.55);
  text-align:center;
  padding:18px 12px;
  font-size:.92rem;
  letter-spacing:.2px;
}

/* ==========================
   LUX FOOTER (FIXED ICON SIZE)
   ========================== */

/* If you ever want a different footer color, change this background. */
.lux-footer{
  background:#000; /* ✅ footer background (change if you want) */
  padding: 22px 18px;
}

.lux-footer-inner{
  max-width: 1120px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Social buttons */
.lux-footer-socials{
  display:flex;
  gap: 12px;
  align-items:center;
}

.lux-footer-socials a{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgb(0, 0, 0);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

/* ✅ THIS is the key fix: force SVG size */
.lux-footer-socials svg{
  width: 40px;   /* ✅ change icon size here */
  height: 40px;  /* ✅ change icon size here */
  display:block;
  fill: rgba(255,255,255,0.9);
}

.lux-footer-socials a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
  background: rgb(0, 0, 0);
}

/* Links */
.lux-footer-links{
  display:flex;
  gap: 10px;
  align-items:center;
  color: rgba(255,255,255,0.62);
  font-size: .98rem;
}

.lux-footer-links a{
  color: rgba(255,255,255,0.62);
  text-decoration:none;
}
.lux-footer-links a:hover{
  color: rgba(255,255,255,0.9);
}

/* Copyright */
.lux-footer-copy{
  color: rgba(255,255,255,0.55);
  font-size: .98rem;
  text-align:right;
}

/* Mobile footer alignment */
@media (max-width: 700px){
  .lux-footer-inner{
    justify-content:center;
    text-align:center;
  }
  .lux-footer-copy{
    text-align:center;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px){
  .navbar{ padding:18px 18px; }
  .social-icons{ display:none; }
  .menu-toggle{ display:block; }

  /* Mobile menu */
  .nav-links{
    position:fixed;
    top:68px; left:12px; right:12px;
    display:none;
    flex-direction:column;
    gap:0;
    background: rgb(0, 0, 0);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:16px;
    overflow:hidden;
    z-index:2000;
    box-shadow:0 18px 55px rgba(0,0,0,0.45);
  }
  .nav-links a{
    padding:14px 14px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child{ border-bottom:none; }
  .nav-links.open{ display:flex; }

  /* ✅ HERO MOBILE (match your first image) */
  .hero{
    flex-direction:column;
    justify-content:flex-start;
    text-align:center;
    padding-top:92px;
    padding-left:0;
    padding-right:0;
    padding-bottom:0;
    height:auto;
    min-height:100svh;
  }

  .hero::after{ opacity:0 !important; }

  .hero-content{
    margin:0 auto;
    padding:0 18px 18px;
  }

  .hero-content h1{ font-size:2.6rem; }
  .subtext{ font-size:1rem; }

  .cta-buttons{
    justify-content:center;
    margin-top:18px;
    padding:0;
    background:transparent;
    border:none;
    backdrop-filter:none;
    box-shadow:none;
    display:flex;
  }

  .btn-primary{
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  }
  .btn-primary.btn-primary-outline{
    background: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  }

  .hero-image{
    position:relative;
    left:50%;
    transform:translateX(-50%);
    width:100vw;
    height:52vh;
    min-height:340px;
    z-index:1;
    margin-top:6px;
  }

  .hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    mask-image:none;
    -webkit-mask-image:none;
    display:block;
  }

  .hero-image::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background: linear-gradient(180deg,
    rgba(15,16,20,0.95) 0%,
    rgba(15,16,20,0.55) 18%,
    rgba(15,16,20,0.15) 42%,
    rgba(15,16,20,0.00) 65%);
  }

  .hero-divider{
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    height:56px;
    opacity:0.95;
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 0);
  }

  .features-inner{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
  }
  .feature-card{ min-width:0; padding:14px; border-radius:16px; }
  .feature-icon{ width:40px; height:40px; border-radius:14px; font-size:1rem; margin-bottom:10px; }
  .feature-card h3{ font-size:.92rem; }
  .feature-card p{ font-size:.82rem; line-height:1.25; }
}

@media (max-width: 420px){
  .feature-card h3{ font-size:.86rem; }
  .feature-card p{ font-size:.78rem; }
}
.feature-icon i{
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}



/* ✅ Mobile: DON'T force 3 columns. Use 1 column so nothing overlaps. */
@media (max-width: 900px){
  .video-inner{
    display:grid;
    grid-template-columns: 1fr; /* ✅ FIX */
    gap:14px;
  }

  .pf-video{
    height:190px; /* ✅ better on phone */
  }

  .video-caption{
    padding:14px;
  }

  .video-caption h3{
    font-size:1rem;
  }

  .play-icon{
    width:52px;
    height:52px;
  }
  .play-icon::before{
    left:21px;
    top:16px;
    border-left:15px solid rgba(255,255,255,0.92);
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
  }
}

@media (max-width: 420px){
  .pf-video{ height:170px; }
  .video-caption h3{ font-size:.95rem; }
}
/* ==========================
   CERAMIC vs NON-CERAMIC
   ========================== */

.ceramic-compare{
  background:#0f1014;
  padding:64px 0 72px;
  color:#fff;
}

.compare-head{
  max-width:820px;
  margin:0 auto 36px;
  text-align:left;
}

.compare-head h2{
  font-family:'Montserrat',sans-serif;
  font-size:2.2rem;
  font-weight:800;
  margin-bottom:10px;
}

.compare-head p{
  color:rgba(255,255,255,0.7);
  font-size:1.05rem;
  line-height:1.45;
}

/* IMAGE GRID */
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-bottom:46px;
}

.compare-card{
  background:#0b0c10;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgb(105, 106, 104);
  box-shadow:0 14px 40px rgba(0,0,0,0.45);
}

.compare-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

/* Optional highlight for ceramic */
.compare-card.highlight{
  border-color:rgba(37,150,190,0.45);
  box-shadow:0 18px 55px rgba(37,150,190,0.25);
}

/* TEXT UNDER IMAGE */
.compare-text{
  padding:18px 18px 22px;
}

.compare-text .label{
  display:inline-block;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.65);
  margin-bottom:8px;
}

.compare-text .label.accent{
  color:#2596be;
}

.compare-text h3{
  font-family:'Montserrat',sans-serif;
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:8px;
}

.compare-text p{
  color:rgba(255,255,255,0.75);
  font-size:.98rem;
  line-height:1.45;
}

/* EXPLANATION TEXT */
.compare-info{
  max-width:820px;
}

.compare-info h3{
  font-family:'Montserrat',sans-serif;
  font-size:1.35rem;
  font-weight:800;
  margin:22px 0 8px;
}

.compare-info p{
  color:rgba(255,255,255,0.75);
  font-size:1rem;
  line-height:1.5;
}

/* ==========================
   MOBILE OPTIMIZATION
   ========================== */
@media (max-width: 900px){

  .ceramic-compare{
    padding:48px 0 58px;
  }

  .compare-head{
    text-align:center;
    margin-bottom:28px;
  }

  .compare-head h2{
    font-size:1.75rem;
  }

  .compare-head p{
    font-size:.95rem;
  }

  .compare-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .compare-card img{
    height:200px;
  }

  .compare-text{
    padding:16px;
  }

  .compare-text h3{
    font-size:1.1rem;
  }

  .compare-text p{
    font-size:.92rem;
  }

  .compare-info{
    text-align:left;
    padding:0 6px;
  }

  .compare-info h3{
    font-size:1.2rem;
  }

  .compare-info p{
    font-size:.95rem;
  }
}

/* SMALL PHONES */
@media (max-width: 420px){

  .compare-card img{
    height:180px;
  }

  .compare-text h3{
    font-size:1.05rem;
  }

  .compare-text p{
    font-size:.88rem;
  }
}
.lux-footer-links{
  display:flex;
  gap:10px;
  align-items:center;
  color: rgba(255,255,255,0.62);
  font-size: .95rem;
}
.lux-footer-links a{
  color: rgba(255,255,255,0.72);
  text-decoration:none;
}
.lux-footer-links a:hover{ color:#fff; }
.lux-footer-links span{ color: rgba(255,255,255,0.35); }
