/* ================= THEME SYSTEM ================= */


/* ================= NAV ================= */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 18px;
  position:sticky;
  top:0;
  z-index:100;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}

.brand{
  font-family:"Bebas Neue";
  font-size:22px;
  letter-spacing:3px;
}
.brand a{ text-decoration:none; color:var(--text);}

#menu{
  display:flex;
  gap:16px;
  list-style:none;
  margin:0;
  padding:0;
  align-items:center;
}

#menu li a{
  text-decoration:none;
  color:var(--text);
  font-size:18px;
  opacity:0.75;  width:100%; padding:1em;
}

#menu li a:hover{opacity:1; background:var(--text); color:var(--bg);}

.icon-btn{
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  padding:6px 10px;
  border-radius:8px;
  cursor:pointer;
}

/* MOBILE MENU */
#menu-toggle{display:none;}

@media(max-width:768px){
  #menu{
    display:none;
    flex-direction:column;
    position:absolute;
    top:60px;
    left:0;
    right:0;
    background:var(--card);
    padding:15px;
    border-bottom:1px solid var(--border);
  }

  #menu.open{display:flex;}
  #menu-toggle{display:block;}
  
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url('kitchen.jpg');
  background-size:cover;
  background-position:center;
}

.hero h1{
  font-family:"Bebas Neue";
  font-size:72px;
  margin:0;
  letter-spacing:3px;
}

.hero p{
  opacity:0.8;
  margin-top:10px;
}

.btn{
  margin-top:20px;
  padding:14px 24px;
  border:1px solid var(--button);
  color:var(--text);
  text-decoration:none;
  transition:0.2s;
}

.btn:hover{
  background:var(--accent);
}

/* ================= SECTIONS ================= */
.section{
  padding:80px 20px;
  text-align:center;
}

.section h2{
  font-family:"Bebas Neue";
  font-size:42px;
  margin-bottom:30px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:15px;

  max-width:1100px;
  margin:0 auto;
  padding:0 15px;

  box-sizing:border-box;
}

.card{
  height:280px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
}

/* ================= CTA ================= */
.cta-wrap{
  padding:80px 20px;
  background:linear-gradient(135deg,var(--bg),var(--card));
  text-align:center;
  border-top:1px solid var(--border);
}

h2{
  font-family:"Bebas Neue";
  font-size:48px;
}
h3{ white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;}

.cta-sub{
  color:var(--text);
  margin-bottom:25px;
}

.cta-box{
  max-width:500px;
  margin:auto;
  background:var(--card);
  padding:25px;
  border-radius:14px;
  border:1px solid var(--border);
  
}

.cta-input{
  width:100%;
  padding:14px;
  margin-bottom:10px;
  border-radius:8px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
}

.cta-btn{
  width:100%;
  padding:14px;
  background:var(--button);
  border:none;
  color:#fff;
  font-weight:600;
  border-radius:8px;
  cursor:pointer;
}

.cta-note{
  font-size:12px;
   color:var(--text);
  margin-top:10px;
}
.cover{ background-position:center center; background-size:cover;}


.media-section{
  padding:80px 20px;
}

.media-wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:center;

  /* IMPORTANT FIX */
  width:100%;
  box-sizing:border-box;
  overflow:hidden;
}

.media-left,
.media-right{
  min-width:0; /* CRITICAL: allows flex shrink */
}

/* LEFT SIDE */
.media-left{
  flex:1;
  min-width:0;
  border-radius:12px;
  overflow:hidden;

  /* KEY FIX: consistent shape */
  aspect-ratio: 16 / 10;
  background:#000;
}

.media-left img,
.media-left video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* RIGHT SIDE */
.media-right{
  flex:1;
  min-width:0;
}

.media-title{
  font-family:"Bebas Neue";
  font-size:42px;
  margin-bottom:10px;
}

.media-desc{
  font-size:15px;
  line-height:1.6;
  opacity:0.85;
  margin-bottom:20px;
}

/* BUTTON */
.media-btn{
  display:inline-block;
  padding:12px 18px;
  border:1px solid var(--button);
  color:var(--text);
  text-decoration:none;
  border-radius:8px;
}
.card,
.tool-card,
.cta-box{
  background:
    linear-gradient(180deg, var(--button), var(--card)),
    var(--card);

  border:3px solid var(--border);
  border-radius:12px;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
body{
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(800px 400px at 50% 100%, rgba(0,0,0,0.4), transparent 70%),
    var(--bg);

  color:var(--text);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .media-wrap{
    gap:25px;
  }

  .media-title{
    font-size:36px;
  }
}

@media(max-width:768px){
  .media-wrap{
    flex-direction:column;
    text-align:center;
  }

  .media-title{
    font-size:32px;
  }

  .media-btn{
    width:100%;
    text-align:center;
  }
}

/* BUTTON */
.media-btn,
.cta-btn{
  display:inline-block;
  width:auto;
  padding:12px 22px;
  border-radius:8px;
}

.cta-btn{
  margin:10px auto 0;
  display:block;
  text-align:center;
}

/* RESPONSIVE */
@media(max-width:768px){
  .media-wrap{
    flex-direction:column;
  }

  .media-left{
    width:100%;
    aspect-ratio: 16 / 9;
  }

  .media-right{
    text-align:center;
  }
}



h1, h2, h3{
    font-family:"Bebas Neue";

  opacity:0;
  transform:translateY(12px);
  transition:opacity 0.6s ease, transform 0.6s ease;
  will-change:opacity, transform;
}

h1.visible, h2.visible, h3.visible{
  opacity:1;
  transform:translateY(0);
}
h3{ font-size:2em; }

.hero{
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#fff;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease;
  filter:brightness(0.6);
}

.hero-slide.active{
  opacity:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
}

.hero h1{
  font-family:"Bebas Neue";
  font-size:72px;
  margin:0;
  letter-spacing:3px;
}

.hero p{
  opacity:0.85;
  margin-top:10px;
}
.tools-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 300px));
  gap:15px;
  margin-top:30px;
  justify-content:center;
}

.tool-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:25px;
  text-align:center;
}

.tool-icon{
  font-size:28px;
  margin-bottom:10px;
}

.tool-title{
  font-family:"Bebas Neue";
  font-size:22px;
  letter-spacing:1px;
  margin-bottom:8px;
}

.tool-desc{
  font-size:14px;
  line-height:1.6;
  opacity:0.75;
  margin-bottom:15px;
}

.tool-btn{
  display:inline-block;
  padding:10px 16px;
  border:1px solid var(--button);
  border-radius:8px;
  text-decoration:none;
  color:var(--text);
  transition:0.2s;
}

.tool-btn:hover{
  background:var(--button);
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .tools-grid{
    grid-template-columns:1fr;
  }
}
.tool-icon{
  width:34px;
  height:34px;
  margin:0 auto 10px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ensures icons follow theme */
body.light .tool-icon{
  color:#111;
}
.bannermessage{ padding:.2em; background-color:var(--text); color:var(--bg); text-align:center }
.footercover{background-color:rgba(0,0,0,0.3); }
footer a{ color:var(--text); text-decoration:none; }

.footer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding:20px 10px;
}

/* BUTTON = MAX 50% WIDTH */
.footer-btn{
 text-align:center;
  align-items:center;
  justify-content:center;
  width:155px; overflow:hidden;

  padding:12px 14px;
  border-radius:10px;
  font-size:14px;

  text-decoration:none;
   border:1px solid var(--text);
  color:var(--text);
  background:(--text);

  transition:0.2s ease;

  /* TEXT HANDLING */
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  
}

/* HOVER */
.footer-btn:hover{
  transform:translateY(-2px);
  border-color:var(--button);
  color:var(--text);
}

/* PRIMARY */
.footer-btn.primary{
  background:#ff6a00;
  border-color:var(--button);
  color:#fff;
  font-weight:600;
  box-shadow:0 8px 20px rgba(255,106,0,0.25);
}

/* LIGHT MODE */
body.light .footer-btn{
  border:1px solid var(--text);
  color:var(--text);
}

body.light .footer-btn.primary{
  color:#fff;
}
.service-locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}



.contact-form{
  max-width:700px;
  margin:30px auto 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-row{
  display:flex;
  gap:12px;
}

.form-row input{
  flex:1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.55);
  background:#fff;
  color:#000;
  font-size:14px;
  outline:none;
  transition:0.2s;
}

/* TEXTAREA */
.contact-form textarea{
  min-height:60px;
  resize:vertical;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#ff6a00;
  box-shadow:0 0 0 1px rgba(255,106,0,0.3);
}

/* BUTTON */
.form-btn{
  margin-top:10px;
  padding:14px;
  border-radius:10px;
  border:none;
  font-size:15px;
  cursor:pointer;
}

/* PRIMARY CTA */
.form-btn.primary{
  background:#ff6a00;
  color:#fff;
  font-weight:600;
  box-shadow:0 8px 20px rgba(255,106,0,0.25);
}

.form-btn.primary:hover{
  background:#ff7a1a;
  transform:translateY(-2px);
}

/* LIGHT MODE */
body.light .contact-form input,
body.light .contact-form textarea{
  border:1px solid rgba(0,0,0,0.15);
  background:#fff;
  color:#111;
}
/* prevent width overflow issues */
*{
  box-sizing:border-box;
}

/* center the form properly */
.contact-form{
  max-width:700px;
  width:100%;
  margin:30px auto;
  padding:0 12px; /* prevents edge clipping on mobile */
}
.logo{ max-width:100%;}

a{ font-weight:bold; color:var(--text); text-decoration:none; font-size: 1.2em; }
a:hover{  text-decoration:underline; }

.cover{ background-size:cover; background-position:center center;}



.heart-btn{
    all: unset;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.heart-btn:focus {
    outline: none;
    box-shadow: none;
}

.heart-btn.active{
    color: red;
}
.image-card {
    position: relative;
    display: inline-block;
}

/* Chrome / Edge / Safari */
.scroll-box::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
}

.scroll-box::-webkit-scrollbar-track {
    background-color: transparent !important;
    box-shadow: none !important;
}

.scroll-box::-webkit-scrollbar-corner {
    background: transparent;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}


/* =========================
   OFFER / COUPON SYSTEM
========================= */

offers{
    display:grid;
    gap:30px;

    width:100%;
    max-width:1400px;

    margin:auto;
    padding:20px;

    box-sizing:border-box;

    grid-template-columns:
        repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

/* MAIN OFFER CARD */
offer{
    display:block;
    position:relative;

    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.04),
        rgba(0,0,0,0.2)),
        var(--card);

    border:5px dashed rgba(111,111,111,1);
	color:var(--text);
    border-radius:24px;

    padding:30px;

    overflow:hidden;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ORANGE GLOW STRIP */
offer:before{
    content:"SALE!";
    position:absolute;
    top:18px;
    right:-42px;

    transform:rotate(45deg);

    background:var(--accent);
    color:#fff;

    padding:8px 50px;

    font-size:20px;
    font-weight:700;
    letter-spacing:2px;

    box-shadow:0 5px 20px var(--button);
}

/* TITLE */
offer > span{
    display:block;

    font-family:"Bebas Neue";
    font-size:42px;
    line-height:1;

    color:var(--text);

    margin-bottom:15px;
    letter-spacing:1px;
}

/* PARAGRAPHS */
offer p{
    color:var(--muted);
    font-size:16px;
    line-height:1.6;
    margin:10px 0;
}

/* H3 */
offer h3{
    font-family:"Bebas Neue";
    font-size:2em;
    margin:12 0 8px;
    color:var(--text);
    letter-spacing:1px;
}

/* FLEX GRID */
offer .flex{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap:15px;
    margin:25px 0;
}

/* MATERIAL CARD */
.couponcg{
    position:relative;

    min-height:220px;

    border-radius:18px;

    overflow:hidden;

    background-size:cover;
    background-position:center center;

    border:2px solid rgba(255,255,255,0.08);

    transition:0.25s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

/* DARK OVERLAY */
.couponcg:before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.15),
            transparent
        );
}

/* HOVER */
.couponcg:hover{
    transform:translateY(-4px) scale(1.02);

    border-color:var(--accent);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.45),
        0 0 0 1px rgba(232,93,12,0.3);
}

/* MATERIAL LABEL */
.couponcg h3{
    position:absolute;
    left:15px;
    bottom:12px;
    z-index:2;

    margin:0;

    font-size:22px;
    color:#555;

    text-shadow:0 3px 10px rgba(0,0,0,0.5);
}

/* DISCLAIMER */
offer exp,
offer .exp{
    display:block;

    margin-top:18px;
    padding-top:15px;

    border-top:1px solid rgba(255,255,255,0.08);

    font-size:13px;
    color:rgba(255,255,255,0.55);
}

/* MOBILE */
@media(max-width:768px){

    offer{
        padding:22px;
        border-radius:18px;
    }

    offer > span{
        font-size:32px;
    }

    .couponcg{
        min-height:180px;
    }

    .couponcg h3{
        font-size:20px;
    }

}

@media(max-width:768px){

  #menu{
    flex-direction:column;
    gap:0;
    padding:0;
    margin:0;
  }

  #menu li{
    list-style:none;
    width:100%;
  }

  /* FULL WIDTH CLEAN ROW */
  #menu li a{
    display:flex;
    align-items:center;

    width:100%;
    padding:16px 18px;

    text-decoration:none;

    /* clean base state */
    background:transparent;
    color:var(--text);

    border-bottom:1px solid var(--border);

    font-size:16px;
    font-weight:500;

    transition:0.2s ease;
  }

  /* TRUE INVERT HOVER */
  #menu li a:hover{
    background:var(--text);
    color:var(--bg);
  }

  /* active state (optional but useful) */
  #menu li a.active{
    background:var(--accent-soft);
    color:var(--text);
  }

  /* click feedback */
  #menu li a:active{
    transform:scale(0.99);
  }
}
.logo{ border-radius:20px;}
