*{
margin:0;
padding:0;
box-sizing:border-box;
   font-family: 'Raleway', sans-serif;
}
body{
     font-family: 'Raleway', sans-serif;
}
/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 80px;
background:#111;
color:white;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
color:white;
text-decoration:none;
transition:0.3s;
}

nav a:hover{
color:#f4b400;
}

/* HERO */

.hero{
height:90vh;
background:url(../images/banner.png) center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-text{
animation:heroText 1.8s ease forwards;
opacity:0;
}

@keyframes heroText{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.hero-text h1{
font-size:60px;
}

.hero-text p{
font-size:22px;
margin:20px 0;
}

.btn{
padding:12px 30px;
background:#f4b400;
color:white;
text-decoration:none;
border-radius:6px;
}

/* ABOUT */

.about{
display:flex;
padding:100px 80px;
gap:60px;
align-items:center;
background: #000;
}

.about-img{
flex:1;
}

.about-img img{
width:100%;
border-radius:12px;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:30px;
margin-bottom:20px;
color: #fff;
  position: relative;
  display: inline-block;
}
.about-text h2:after{ content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: #c19a6b;
  overflow: hidden;}
 .about-text h2::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 100px);
  width: 40px;
  height: 2px;
  background: #ffd700;
  animation: lineMove 2s linear infinite;
}

/* Animation */
@keyframes lineMove {
  0% {
    left: calc(50% - 100px);
  }
  100% {
    left: calc(50% + 100px);
  }
}

.about-text p{
line-height:1.8;
margin-bottom:15px;
color: #fff;
}

.about-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#f4b400;
color:white;
text-decoration:none;
border-radius:6px;
}

.about-btn:hover{
background:#ff9900;
}

/* PRODUCTS */

.products {
  padding: 100px 80px;
  text-align: center;
  background: #f8f8f8;
}

.products h2 {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Card Design */
.product {
  text-decoration: none;
  color: #111;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  position: relative;
}

/* Image wrapper */
.product-img {
  position: relative;
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s;
}

/* Zoom effect */
.product:hover img {
  transform: scale(1.1);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: 0.4s;
}

.product:hover .overlay {
  opacity: 1;
}

/* Buttons */
.overlay button {
  padding: 10px 18px;
  border: none;
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

/* Outline button */
.overlay .outline {
  background: transparent;
  border: 2px solid #c19a6b;
  color: #fff;
}

/* Hover button */
.overlay button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193,154,107,0.5);
}

/* Text */
.product h3 {
  padding: 18px;
  font-size: 18px;
  font-weight: 600;
  background: #000;
  color: gold;
}

/* Card hover */
.product:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
/* REVIEWS */

.reviews{
padding:100px 80px;
text-align:center;
}

.reviews h2{
font-size:36px;
margin-bottom:40px;
}

.review-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.review{
width:260px;
padding:25px;
background:#f5f5f5;
border-radius:10px;
transition:0.3s;
}

.review img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:15px;
}

.review:hover{
transform:scale(1.05);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* FOOTER */
/* Button wrapper */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

/* Golden Button (existing) */
.btn {
  padding: 12px 28px;
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.4s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193,154,107,0.6);
}

/* Outline Button (NEW 🔥) */
.btn-outline {
  position: relative;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #c19a6b;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s;
}

/* Hover fill effect */
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

/* Hover animation */
.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-outline:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(193,154,107,0.6);
}
footer{
background:#111;
color:white;
padding:80px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:50px;
}

.footer-info p{
margin:10px 0;
}

.footer-info i{
margin-right:10px;
color:#f4b400;
}

.social{
margin-top:20px;
}

.social a{
color:white;
font-size:22px;
margin-right:15px;
}

.social a:hover{
color:#f4b400;
}

.footer-form input,
.footer-form textarea{
width:100%;
padding:12px;
margin:10px 0;
border:none;
border-radius:5px;
}

.footer-form button{
padding:12px 25px;
background:#f4b400;
border:none;
color:white;
}

/* FOOTER */

footer{
background:#111;
color:white;
padding:80px;
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:60px;
flex-wrap:wrap;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding: 0 80px;
}

/* Headings */
.footer-box h3 {
  margin-bottom: 20px;
  color: #c19a6b;
}

/* Text */
.footer-box p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-box i {
  color: #c19a6b;
  margin-right: 8px;
}

/* Links */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #c19a6b;
  padding-left: 6px;
}

/* Social icons */
.social {
  margin-top: 15px;
}

.social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border: 1px solid #c19a6b;
  color: #c19a6b;
  border-radius: 50%;
  transition: 0.4s;
}

.social a:hover {
  background: #c19a6b;
  color: #111;
  box-shadow: 0 0 12px #c19a6b;
  transform: translateY(-3px);
}

/* Form */
.footer-form {
  margin-top: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  border-radius: 4px;
  outline: none;
  transition: 0.3s;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #c19a6b;
  box-shadow: 0 0 8px rgba(193,154,107,0.4);
}

.footer-form textarea {
  min-height: 80px;
  resize: none;
  margin-bottom: 10px;
}

/* Button */
.footer-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  border: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.4s;
}

.footer-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(193,154,107,0.6);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
  font-size: 14px;
}
/* Map Box */
.map-box iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
  filter: grayscale(20%) contrast(110%);
  transition: 0.4s;
}

/* Hover effect */
.map-box iframe:hover {
  filter: grayscale(0%) contrast(120%);
  transform: scale(1.02);
}

/* Adjust grid for 5 columns */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 80px;
}
/* Default grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 0px;
}

/* Last 2 boxes ko 2 column span */
.footer-box:nth-last-child(2),
.footer-box:last-child {
  grid-column: span 2;
}

/* Make inner layout 2 column (form + map) */
.footer-box:nth-last-child(2),
.footer-box:last-child {
  display: block;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 20px;
  }

  .form-row {
    flex-direction: column;
  }
}
/* 50% width */

.footer-info{
flex:1;
}

.footer-form{
flex:1;
}

/* CONTACT DETAILS */

.footer-info p{
margin:12px 0;
font-size:15px;
}

.footer-info i{
margin-right:10px;
color:#f4b400;
}

/* SOCIAL */

.social{
margin-top:20px;
}

.social a{
color:white;
font-size:22px;
margin-right:15px;
transition:0.3s;
}

.social a:hover{
color:#f4b400;
}

.footer-form button:hover{
background:#ff9900;
}

.copyright{
text-align:center;
margin-top:40px;
}

/* REVIEW STARS */

.stars{
color:#f4b400;
margin:10px 0;
font-size:18px;
}

/* CONTACT FORM */

.contact-form{
margin-top:20px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.form-grid input,
.form-grid textarea{
width:100%;
padding:12px;
border-radius:6px;
border:none;
font-size:14px;
}

.form-grid textarea{
grid-column:1 / 3;
height:120px;
resize:none;
}

.contact-form button{
margin-top:15px;
padding:12px 25px;
background:#f4b400;
border:none;
color:white;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#ff9900;
}
nav{

top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 80px;
background:#111;
z-index:1000;
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

nav a:hover{
color:#f4b400;
}

.logo img{
height:50px;
}


nav{
display:flex;
justify-content:space-between;
padding:10px 80px;
background:#111;
color:white;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
align-items: center;
}

nav a{
color:white;
text-decoration:none;
}




.products{
padding:80px;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.product{
text-decoration:none;
color:black;
background:white;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.product img{
width:100%;
}

.gallery{
padding:80px;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
transition:0.4s;
}

.gallery-grid img:hover{
transform:scale(1.1);
}

.contact{
padding:80px;
text-align:center;
}

.contact-grid{
display:flex;
gap:40px;
justify-content:center;
}

.contact-form{
display:flex;
flex-direction:column;
gap:10px;
}
.order-btn {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.4s;
}

/* Shine effect */
.order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-25deg);
  transition: 0.5s;
}

/* Hover animation */
.order-btn:hover::before {
  left: 130%;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193,154,107,0.5);
}

.top-bar {
  background: linear-gradient(45deg, #c19a6b, #ffd700);
  color: #fff;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

/* Left side */
.top-left span {
  margin-right: 20px;
  color: #fff;
}

.top-left i {
  color: #fff;
  margin-right: 6px;
}

/* Right side social icons */
.top-right a {
  position: relative;
  color: #fff;
  margin-left: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.4s;
  overflow: hidden;
}

/* Hover effect (inverse premium) */
.top-right a:hover {
  background: #fff;
  color: #c19a6b;
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Outline animation */
.top-right a::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  opacity: 0;
  transition: 0.4s;
  border-radius: 50%;
}

.top-right a:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

@media(max-width:768px){

nav{
flex-direction:column;
}

.contact-grid{
flex-direction:column;
}

}

/* WHY CHOOSE US */

.why{
padding:100px 80px;
text-align:center;
background:#f5f5f5;
}

.why h2{
font-size:36px;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:35px;
}

.why-card{
background:white;
padding:35px 25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
}

.why-card i{
font-size:40px;
color:#f4b400;
margin-bottom:15px;
}

.why-card h3{
font-size:20px;
margin-bottom:10px;
}

.why-card p{
font-size:15px;
color:#555;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* PAGE BANNER */

.page-banner{
height:350px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.page-banner::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

.banner-content{
position:relative;
z-index:2;
animation:bannerFade 1.5s ease;
}

.banner-content h1{
font-size:42px;
margin-bottom:10px;
}

.banner-content p{
font-size:18px;
}

/* BANNER BACKGROUNDS */

.about-banner{
background:url("https://picsum.photos/1600/500?1") center/cover;
}

.product-banner{
background:url("https://picsum.photos/1600/500?2") center/cover;
}

.gallery-banner{
background:url("https://picsum.photos/1600/500?3") center/cover;
}

.contact-banner{
background:url("https://picsum.photos/1600/500?4") center/cover;
}

/* ANIMATION */

@keyframes bannerFade{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* STATS SECTION */

.stats{
padding:100px 80px;
background:#111;
color:white;
text-align:center;
}

.stats h2{
font-size:36px;
margin-bottom:50px;
}

.stats-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.stat-box{
padding:30px;
background:#1c1c1c;
border-radius:10px;
transition:0.3s;
}

.stat-box i{
font-size:35px;
color:#f4b400;
margin-bottom:15px;
}

.stat-box h3{
font-size:30px;
margin-bottom:5px;
}

.stat-box p{
font-size:16px;
color:#ccc;
}

.stat-box:hover{
transform:translateY(-8px);
background:#222;
}
.logo img{width: 150px;}
/* MEDIA QUERY */

@media(max-width:900px){

nav{
flex-direction:column;
gap:15px;
}

.about{
flex-direction:column;
padding:60px 20px;
}

.products{
padding:60px 20px;
}

.reviews{
padding:60px 20px;
}

footer{
padding:60px 20px;
}

.hero-text h1{
font-size:38px;
}

.hero-text p{
font-size:18px;
}

}

@media(max-width:768px){

.page-banner{
height:250px;
}

.banner-content h1{
font-size:28px;
}

.banner-content p{
font-size:16px;
}

}

@media(max-width:768px){

.stats{
padding:60px 20px;
}

.stats h2{
font-size:28px;
}

}