/* ==========================================================================
   NF Creations - Premium 3D & Aesthetic Stylesheet
   ========================================================================== */

:root {
  --primary-gold: #b5904d;      
  --gold-hover: #96753b;        
  --dark-charcoal: #2c2a29;     
  --cream-bg: #fdfbf7;          
  --white: #ffffff;
  --light-border: #e8e2d5;
  --font-heading: 'Playfair Display', serif; 
  --font-body: 'Montserrat', sans-serif;     
  --max-width: 1200px;
  --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--dark-charcoal);
  line-height: 1.6;
  overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }

/* --- Header & Navigation --- */
header {
  position: sticky;
  top: 0;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--light-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  width: 90%; max-width: var(--max-width); margin: 0 auto;
}

.logo img { height: 50px; width: auto; }

.nav-links { display: flex; gap: 2rem; }
.nav-links li a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-gold); }

/* Hamburger Menu */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.bar { display: block; width: 25px; height: 2px; margin: 5px auto; background-color: var(--dark-charcoal); transition: all 0.3s ease; }

/* --- Premium 3D Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(145deg, #c5a365, #a37f3b); 
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  border: none; border-radius: 8px; cursor: pointer;
  box-shadow: 0 6px 0 #7a5c24, 0 12px 20px rgba(0,0,0,0.2); 
  transition: all 0.2s ease;
  position: relative; text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #7a5c24, 0 8px 15px rgba(0,0,0,0.2);
  color: var(--white);
}

.btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #7a5c24, 0 4px 5px rgba(0,0,0,0.2); 
}

/* WhatsApp 3D Button Utility */
.btn-wa {
  background: linear-gradient(145deg, #25D366, #128C7E);
  box-shadow: 0 6px 0 #075E54, 0 12px 20px rgba(0,0,0,0.2);
}
.btn-wa:hover { box-shadow: 0 4px 0 #075E54, 0 8px 15px rgba(0,0,0,0.2); }
.btn-wa:active { box-shadow: 0 0 0 #075E54, 0 4px 5px rgba(0,0,0,0.2); }

/* --- Hero Section (Dark Golden Overlay) --- */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding: 2rem 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(44, 42, 41, 0.85) 0%, rgba(138, 105, 50, 0.7) 100%);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--white); text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--white); text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

/* --- Glassmorphism / 3D Product Box --- */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 10px 25px rgba(181, 144, 77, 0.15), -10px -10px 25px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(181, 144, 77, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideUpFade 0.8s ease-out forwards;
  opacity: 0; transform: translateY(30px);
}

.product-card:nth-child(even) { animation-delay: 0.2s; }

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 15px 15px 30px rgba(181, 144, 77, 0.25), -15px -15px 30px rgba(255, 255, 255, 0.9);
}

@keyframes slideUpFade {
  to { opacity: 1; transform: translateY(0); }
}

.product-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-info { padding: 1.5rem; text-align: center; }
.product-info h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--primary-gold); }

/* --- 3D Social Icons --- */
.social-icon-3d {
  font-size: 2.5rem; display: inline-block;
  text-shadow: 2px 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.social-icon-3d:hover { transform: translateY(-5px) scale(1.1); text-shadow: 4px 8px 12px rgba(0,0,0,0.4); }
.social-icon-3d.insta { color: #E1306C; }
.social-icon-3d.wa { color: #25D366; }

/* --- FAQ Section Styles --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: all 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 25px rgba(181, 144, 77, 0.15);
}
.faq-question {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-charcoal);
  background: var(--white);
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-question {
  color: var(--primary-gold);
  border-bottom: 1px solid var(--light-border);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--cream-bg);
  padding: 0 1.5rem;
  color: #555;
}
.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-gold);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* --- Footer --- */
footer { background-color: var(--dark-charcoal); color: var(--white); padding: 4rem 0 2rem; text-align: center; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; text-align: left; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col h4 { color: var(--primary-gold); margin-bottom: 1rem; }
.footer-col p, .footer-col a { color: #cccccc; font-size: 0.95rem; margin-bottom: 0.5rem; display: block; }
.footer-col a:hover { color: var(--primary-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.85rem; color: #888; }

/* --- Floating Petals --- */
.floating-petal { position: fixed; top: -10%; z-index: 0; pointer-events: none; user-select: none; animation: fall infinite linear; opacity: 0.6; }
@keyframes fall {
  0% { transform: translate(0, -10vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translate(20px, 110vh) rotate(360deg); opacity: 0; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: var(--header-height); left: -100%; width: 100%; height: calc(100vh - var(--header-height));
    background-color: var(--cream-bg); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: 0.4s ease-in-out;
  }
  .nav-links.active { left: 0; }
  .nav-links li a { font-size: 1.5rem; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content h1 { font-size: 2.5rem; }
  .section-padding { padding: 3rem 0; }
}/* --- Header Logo Branding --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading); /* Brand consistency */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Mobile Responsiveness for Branding */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
        gap: 8px;
    }
    .logo img {
        height: 40px;
    }
}