@font-face {
  font-family: 'Juana Light';
  src: url('Juana-Light.ttf') format('truetype');
}

/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

   img {
      -webkit-user-drag: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      pointer-events: none;
    }
/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease;
}
.rotate-logo {
  width: 60px;
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85)),
    url('back.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  width: 300px;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-title {
  font-family: 'Juana Light', serif;
  font-size: 3rem;
  letter-spacing: 2px;
}
.hero-title span {
  color: #c9a25a;
}
.hero-sub {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Section Title */
.head_center {
  text-align: center;
  color: #c9a25a;
  font-family: 'Juana Light';
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 3rem 0 2rem;
  font-size: 2.5rem;
  position: relative;
}
.head_center::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c9a25a;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* === OUR PRODUCTS SECTION — Enhanced Premium Black UI === */
.story-section {
  background: #000;
  padding: 100px 5% 120px;
  position: relative;
  overflow: hidden;
}

.story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  flex-wrap: nowrap;
  position: relative;
  gap: 6rem; /* ⬅️ Increased gap between image & text */
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Alternating Backgrounds */
.story:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}
.story:nth-child(even) {
  flex-direction: row-reverse;
  background: rgba(255, 255, 255, 0.04);
}

.story:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(201, 162, 90, 0.15);
}

/* Product Images */
.story-img {
  width: 460px; /* ⬅️ Slightly wider image */
  height: auto;
  border-radius: 22px;
  box-shadow: 0 0 50px rgba(201,162,90,0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.story-img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 80px rgba(201,162,90,0.3);
}

/* Product Text */
.story-text {
  max-width: 550px;
  text-align: left;
}
.story-text h2 {
  color: #c9a25a;
  font-family: 'Juana Light';
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.story-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: justify;
}


/* Fade-in Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
/* Only stack on actual mobile screens */
/* Responsive */
/* Stack only on phones */
@media (max-width: 600px) {
  .story {
    flex-direction: column !important;
    text-align: center;
    padding: 60px 3%;
  }

  .story-img {
    width: 90%;
  }

  .story-text {
    max-width: 100%;
  }
}



/* Outro */
.outro {
  padding: 120px 0;
  background: linear-gradient(to bottom, #000, #111);
}
.outro h2 {
  color: #c9a25a;
  font-family: 'Juana Light';
  margin-bottom: 1rem;
}
.outro p {
  color: #ccc;
}

/* Connect Section */
.connect {
  background: radial-gradient(circle at center, #111, #000);
  color: #fff;
}

.text-gold {
  color: #c9a25a;
  letter-spacing: 1px;
}

/* QR */
.qr-container {
  display: flex;
  justify-content: center;
}
.qr-code {
  width: 200px;
  height: auto;
  border: 2px solid #c9a25a;
  border-radius: 10px;
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}

/* Social Links */
.social-link, .mail-link {
  color: #c9a25a;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.social-link:hover, .mail-link:hover {
  color: #fff;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.5rem 0;
  color: #777;
  font-size: 0.9rem;
}
