/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* =========================
   BODY
========================= */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 40px 20px;
}

/* =========================
   MAIN WRAPPER
========================= */
.main-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 40px;
  z-index: 2;
  animation: fadeUp 1.3s ease-out;
}

/* Extra large screens */
@media (min-width: 1600px) {
  .main-wrapper {
    max-width: 1400px;
  }
}

/* =========================
   BACKGROUND SLIDER
========================= */
.background-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.background-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 12s infinite;
  will-change: opacity;
}

/* Background Images */
.background-slider .slide:nth-child(1) {
  background-image: url("bg1.jpg");
  animation-delay: 0s;
}
.background-slider .slide:nth-child(2) {
  background-image: url("bg2.jpg");
  animation-delay: 4s;
}
.background-slider .slide:nth-child(3) {
  background-image: url("bg3.jpg");
  animation-delay: 8s;
}

/* Smooth Fade Animation */
@keyframes slideShow {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  40%  { opacity: 1; }
  45%  { opacity: 0; }
  100% { opacity: 0; }
}

/* =========================
   DARK OVERLAY
========================= */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)
  );
  z-index: -1;
}

/* =========================
   LOGO
========================= */
.logo img {
  width: clamp(220px, 18vw, 400px);
  height: auto;
  margin-bottom: 30px;
  animation: float 4s ease-in-out infinite;
}

/* =========================
   TITLE
========================= */
.title {
 font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(45deg, #d4af37, #f8e3b5, #c89b6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite alternate;
  margin-bottom: 25px;
}

/* =========================
   ADDRESS
========================= */
.subtitle {
  color: #fafafa;
  margin-bottom: 25px;
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

/* =========================
   CONTACT
========================= */
.contact {
  margin-bottom: 25px;
  color: #ccc;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.contact a {
  display: inline-block;
  margin-top: 6px;
  color: #c89b6d;
  text-decoration: none;
  word-break: break-word;
  transition: 0.3s ease;
}

.contact a:hover {
  color: #f5d6a6;
  transform: translateY(-2px);
}
.numbers i,
.contact i {
  margin-right: 6px;
  color: #c89b6d;
}

.numbers a {
  color: #ffffff;
  text-decoration: none;
}

.numbers a:hover {
  color: #f5d6a6;
}
/* =========================
   FOOTER
========================= */
footer {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 20px;
}

footer a {
  color: #c89b6d;
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #f5d6a6;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes glow {
  from { text-shadow: 0 0 10px rgba(200,155,109,0.2); }
  to { text-shadow: 0 0 30px rgba(200,155,109,0.7); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .main-wrapper {
    padding: 40px 25px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100svh;   /* Better than 100vh for mobile */
    padding: 20px;
  }

  .main-wrapper {
    margin: 0;
    padding: 30px 20px;
  }


  .logo img {
    width: 0px;
    margin-bottom: 20px;
  }

  .title {
    font-size: 2.0rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact {
    font-size: 0.95rem;
  }

  .background-slider .slide {
    animation-duration: 24s;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .logo img {
    width: 300px;   /* 250px is too large for small screens */
  }

  .main-wrapper {
    padding: 25px 15px;
  }

  footer {
    font-size: 0.75rem;
  }

  .background-slider .slide {
    animation: slideShow 24s infinite;
  }
}

/* =========================
   DIFFERENT ADDRESS FOR MOBILE
========================= */

/* Hide mobile version by default */
.mobile-address {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {

  .desktop-address {
    display: none;
  }

  .mobile-address {
    display: inline;
  }
}
/* WhatsApp Chat Button */
.whatsapp-chat-button {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-chat-button img {
  width: 32px;
  height: 32px;
}

.whatsapp-chat-button:hover {
  transform: scale(1.1);
}