* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Cairo', Arial, sans-serif;
}

body {

  
}

html {
  scroll-behavior: smooth;
}



nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(250, 248, 240, 0.9); 
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(58, 46, 37, 0.05);
  z-index: 1000;
}


.nav-container {
  max-width: 1100px;
  height: 100%;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

}


.logo img {
  height: 26px;
  display: block;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;

}

.nav-links a {
  text-decoration: none;
  color: #4b3e2f; 
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 3px 0;
  font-family: 'Cairo', sans-serif;
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #d6a95c; 
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


@media (max-width: 600px) {
  nav {
    height: 52px;
  }

  .logo img {
    height: 26px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}


.home {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;    
  min-height: 90vh;
  padding-top: 60px;       
  background: linear-gradient(
    135deg,
    #8b6d5c 0%,  
    #bfa68b 40%,   
    #eae0d5 70%,  
    #fff6ee 100%   
  );
  
}


.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
  pointer-events: none; 
}


.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-video {
  filter: brightness(0.85) contrast(1.1);  subtle professional look 
}

.home-content {
  position: relative; 
  z-index: 2;
}
.home h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #E6E1D6; 
  text-align: center;


  text-shadow: 0 2px 6px rgba(0,0,0,0.5);

  line-height: 1.2;
  margin-bottom: 1rem;
}

.home p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;


  text-shadow: 0 1px 3px rgba(0,0,0,0.5);

  margin-bottom: 2rem;
  line-height: 1.4;
}

.home h1, .home p {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.home h1 {
  animation: fadeUp 1s ease-out 0.3s forwards; 
}

.home p {
  animation: fadeUp 1s ease-out 0.6s forwards; 
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.home-content {
  position: absolute; 
  bottom: 50px;
  width: 100%;
  text-align: center; 
  z-index: 2;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #d97706, #fbbf24);

  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
  align-items: center;  
  text-align: center;

}
.cta-btn:hover { transform: translateY(-2px); }


.products {
  padding: 7rem 1rem 3rem;
  width: 100%; 
  background: #fefbf3; 
}


.products .product-showcase-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}


.product-showcase {
  position: relative;
  background: #fffaf2;
  padding: 2rem 1.2rem 3rem;
  border-radius: 16px;
  max-width: 420px;
  margin: 0 auto;
  touch-action: pan-y;
  box-shadow: 0 8px 20px rgba(58, 46, 37, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-image img {
  width: 100%;
  max-width: 260px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: transform;
}

.product-image img:hover {
  transform: translateY(-3px) scale(1.02);
}


.product-specs {
  margin-top: 1.2rem;
  color: #5a4e41;

}

.product-specs ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.product-specs li {
  padding: 0.35rem 0;
  color: #5a4e41;
  line-height: 1.6;
}


#products-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4b3e2f;  
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: normal;
  text-transform: none;
  font-family: 'Cairo', sans-serif;
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  color: #0077ff;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-btn.left { left: -18px; }
.nav-btn.right { right: -18px; }

.nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
 
}

#orderBtn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 30px;
  
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#orderBtn:hover {
  transform: translateY(-2px);
  
}

@media (max-width: 768px) {
  .product-showcase-container {
    flex-direction: column;
    align-items: center;
  }
}


footer {
  padding: 2rem;
  text-align: center;
  color: #6B5E4E;
  background: #E6E1D6;
  border-top: 1px solid #ddd;
}

footer .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

footer .social-icons a {
  color: #A88B6E;
  transition: transform 0.2s ease, color 0.2s ease;
}

footer .social-icons a:hover {
  transform: scale(1.2);
  color: #2563eb; /* hover color */
}

footer .social-icons svg {
  width: 28px;
  height: 28px;
}



@media (max-width: 600px) {
  nav {
    height: 52px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .logo img {
    height: 26px;
  }
}


.home {
  padding-top: 56px;
}

.products {
    padding: 4rem 1.5rem;
    text-align: center;
}



#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* clicks go through */
  overflow: hidden;
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: #f5e6d3;
  font-size: 1rem;
  user-select: none;
  pointer-events: none;
  animation-name: fall;
  animation-timing-function: linear;
}


@keyframes fall {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(100vh) rotate(360deg); }
}




.repair-section {
  padding: 6rem 1.5rem 4rem;
  background: #fff6ee; /* warm cream */
}

.repair-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}


.repair-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.repair-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.repair-image img:hover {
  transform: scale(1.03);
}

.repair-content {
  flex: 1;
  min-width: 280px;
  text-align: right;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateY(0);

}

.repair-content h2 {
  font-family: 'Cairo', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #4B3F2F;
s  
}

.repair-content p {
  font-size: 1rem;
  margin-bottom: 1.8rem;
  color: #4b5563;


  line-height: 1.7;
}


.repair-content .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.repair-content .btn {
  background: linear-gradient(135deg, #d97706, #fbbf24);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  
  transition: all 0.3s ease;
}

.repair-content .btn:hover {
  transform: translateY(-3px) scale(1.05);
  
}


.repair-content .btn-group a:first-child {
  background: linear-gradient(135deg, #A88B6E, #C9B69E);
  box-shadow: 0 12px 25px rgba(168,139,110,0.25);

}

@media (max-width: 768px) {
  .repair-container {
    flex-direction: column;
    text-align: center;
  }

  .repair-content {
    text-align: center;
  }

  .repair-content .btn-group {
    justify-content: center;
  }
}


.neon-border {
    width: 250px;  
    border-radius: 20px; 
    padding: 5px; 
    background: linear-gradient(270deg, #00ffff, #a0e5ff, #d0f0ff, #b0c4de);
    background-size: 600% 600%;
    animation: icyBorder 6s linear infinite;
    display: inline-block;
    
    overflow: hidden; 
    transition: transform 0.3s ease; 
}


.neon-border:hover {
    transform: scale(1.05);
}


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

.neon-border::before {
  background: linear-gradient(270deg, #FFDDAA, #FFEBCC, #FFEEDD, #FFDDAA);
  box-shadow: 0 0 45px rgba(255,221,170,0.5),
              0 0 90px rgba(255,221,170,0.2);
}

/*added*/
@media (max-width: 600px) {
  .home-content {
    bottom: 10px; 

  }
}


.desktop-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  width: 100%;
  min-height: 90vh; 
  padding: 0 6%;
  gap: 2.5rem;
  overflow: hidden;
  align-self: center;
}


.neon-border {
  position: relative;
  display: inline-block;
  width: 100%;   
  max-width: 380px; 
  border-radius: 38px;
  overflow: visible;
  justify-self: center;
}


.neon-border::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 46px;
  background: linear-gradient(270deg, #FFDDAA, #FFEBCC, #FFEEDD, #FFDDAA);
  background-size: 600% 600%;
  animation: icyBorder 8s linear infinite;
  z-index: 0;
  box-shadow: 0 0 45px rgba(255,221,170,0.5),
              0 0 90px rgba(255,221,170,0.2);
  pointer-events: none;
}


.neon-border video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  object-fit: cover;
}


.neon-border:hover {
  transform: scale(1.03);
  transition: transform 0.35s ease;
}


.desktop-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-left: 2rem;
  align-self:center ;
}

.desktop-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #7a4e1b;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.desktop-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #4b5563;
}

.desktop-content .cta-btn {
  align-self: center; /* aligns with content on right */
}


@keyframes icyBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.mobile-only {
  display: block;
}

.desktop-hero {
  display: none;
}

@media (min-width: 900px) {
  .mobile-only,
  .mobile-video {
    display: none;
  }

  .desktop-hero {
    display: grid;
  }
}

.neon-border img,
.neon-border video {
  position: relative;
  z-index: 1;

}

.repair-section {
  background: #fff6ee; /* warm cream */
}
.repair-content h2 {
  color: #7a4e1b; /* dark brown */
  text-shadow: 0 2px 6px rgba(120, 78, 27, 0.2);
}
.repair-content p {
  color: #5a4e41; /* medium warm brown */
}
.repair-content .btn {
  background: linear-gradient(135deg, #d97706, #f59e0b); /* warm orange-gold */
}
.repair-content .btn-group a:first-child {
  background: linear-gradient(135deg, #16a34a, #4ade80); /* soft green for action */
}