* { margin:0; padding:0; font-family: 'Segoe UI', sans-serif; }

body { background:#fff; color:#333; }

.header {
  background:#000000;
  padding:15px 0;
}

.container {
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo { height:50px; }

nav a {
  color:#A67C00;
  margin-left:25px;
  text-decoration:none;
  font-weight:500;
}

.hero {
  min-height: 100vh;                 /* Adjusts height naturally */
  background-image: url('../images/hero.jpg');
  background-size: cover;            /* Auto scales image */
  background-position: center;       /* Auto centers */
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: clamp(20px, 5vw, 80px);   /* Responsive padding */
}

/* Responsive Text (Auto Scaling) */
.hero-content h1 {
  font-size: clamp(24px, 5vw, 52px); /* Mobile → Desktop */
  line-height: 1.2;
  color: #A67C00;
}

.hero-content p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #ddd;
  margin: 15px 0;
}

/* Button */
.btn {
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 30px);
  font-size: clamp(14px, 2vw, 16px);
}

.categories, .why {
  padding:80px 10%;
  text-align:center;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
}

.card {
  text-decoration: none;
  color: #333;
  transition: 0.4s ease;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
/* WHY CHOOSE US – LUXURY ICON STYLE */
.why-icons {
  align-items: stretch;
}

.why-card {
  background:#faf8f4;
  border-radius:16px;
  padding:30px 20px;
  text-align:center;
  transition:0.4s ease;
}

.why-card i {
  font-size:40px;
  color:#A67C00; /* GOLD THEME */
  margin-bottom:15px;
}

.why-card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.why-card h4 {
  margin-bottom:10px;
  color:#111;
}

.why-card p {
  font-size:14px;
  color:#666;
}
.luxury-quality h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.luxury-card {
  background: linear-gradient(145deg, #0e0e0e, #1b1b1b);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 35px 25px;
  text-align: center;
  border-radius: 18px;
  transition: all 0.4s ease;
}

.luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.luxury-icon {
  font-size: 48px;
  color: #d4af37; /* Luxury Gold */
  margin-bottom: 20px;
}

.luxury-card h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 12px;
}

.luxury-card p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(145deg, #25D366, #1ebe5d);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: #fff;
}


footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}
