/* ============================================
   Ishu Creation — Global Styles
   Pure CSS, no frameworks. Mobile-first.
   ============================================ */

/* ---------- Design tokens (CSS variables) ---------- */
:root {
  --cream: #FBF7F2;
  --blush: #F5D9D2;
  --rose:  #B5635A;
  --primary: #8B3A3A;
  --accent: #C9A86A;     /* gold */
  --foreground: #2A1F1C;
  --muted: #6B5D58;
  --border: #E7DDD4;
  --card: #FFFFFF;

  --pastel-pink: #F5D9D2;  /* same as blush */
  --gold: #C9A86A;         /* same as accent */
  --gold-dark: #A0804A;    /* darker gold */

  --shadow-soft: 0 10px 40px -15px rgba(139, 58, 58, 0.25);
  --shadow-xl:   0 25px 60px -20px rgba(0, 0, 0, 0.25);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
.italic { font-style: italic; color: var(--primary); }

.gold-divider {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--accent);
}

/* ---------- Layout helpers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.text-center { text-align: center; }
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--foreground);
}
.btn-outline:hover { background: rgba(0,0,0,0.05); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(251, 247, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px -15px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-family: var(--font-serif); font-size: 1.75rem; }
.brand span:first-child { color: var(--primary); }
.brand span:last-child  { color: var(--accent); font-style: italic; }

.nav { display: none; gap: 1.75rem; }
@media (min-width: 1024px) { .nav { display: flex; } .menu-toggle { display: none; } }
.nav a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42,31,28,0.8);
  transition: color 0.2s;
}
.nav a:hover, .nav a.active { color: var(--primary); }

.menu-toggle { padding: 0.5rem; }
.mobile-nav {
  display: none;
  background: rgba(251,247,242,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  border-radius: 8px;
}
.mobile-nav a:hover { background: var(--blush); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,217,210,0.4), var(--cream) 60%);
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.hero::before { top: -8rem; left: -6rem; background: rgba(245,217,210,0.5); }
.hero::after  { bottom: -8rem; right: -6rem; background: rgba(201,168,106,0.2); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 { margin-top: 1.5rem; }
.hero p { margin-top: 1.5rem; color: var(--muted); font-size: 1.1rem; max-width: 28rem; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats { margin-top: 3rem; display: flex; gap: 2rem; align-items: center; color: var(--muted); font-size: 0.875rem; }
.hero-stats > div:not(.divider) > div:first-child {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--primary);
}
.hero-stats .divider { width: 1px; height: 2.5rem; background: var(--border); }

.hero-image-wrap {
  position: relative;
  height: 500px;
}
.hero-image-wrap::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(139,58,58,0.1), rgba(201,168,106,0.2));
}
.hero-image-wrap img {
  position: absolute; inset: 12px;
  width: calc(100% - 24px); height: calc(100% - 24px);
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 18rem; height: 18rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blush);
  color: var(--primary);
  border-radius: 16px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.map-card {
  background: var(--card);
  border: 1px solid rgba(42, 31, 28, 0.16);
  border-radius: 28px;
  padding: 2rem;
  overflow: hidden;
}
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 55px -42px rgba(0,0,0,0.5);
}
.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ---------- Product cards ---------- */
.product-card {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-card .img-wrap { aspect-ratio: 4/5; overflow: hidden; }
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover img { transform: scale(1.1); }
.product-card .info { padding: 1.5rem; }
.product-card .cat {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.product-card h3 { margin: 0.5rem 0; }
.product-card .desc { font-size: 0.9rem; color: var(--muted); }
.product-card .row {
  margin-top: 1rem; display: flex; justify-content: space-between; align-items: center;
}
.product-card .price { font-family: var(--font-serif); font-size: 1.25rem; color: var(--primary); }

/* ---------------------------------------------------------------------------------------------------------------------------- */

.generate-btn {
            margin-top: 1rem;
            padding: 1rem 2rem;
            
            color: var(--white);
            border-radius: 25px;
            border: 2px solid var(--accent);
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .generate-btn:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* AI Loading State */
        .ai-loading {
            text-align: center;
            padding: 3rem;
            display: none;
        }
        
        .loader {
            border: 5px solid var(--pastel-pink);
            border-top: 5px solid var(--gold);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* AI Result Display */
        .ai-result {
            margin-top: 2rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 20px;
            display: none; /* Hidden by default */
        }
        
        .ai-result.show {
            display: block;
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Generated Image Container */
        .generated-image-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            animation: zoomIn 0.8s ease-out;
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .generated-image-container img {
            width: 100%;
            height: auto;
            display: block;
        }

        .design {
            font-weight: 600;
            padding: 0;
        }
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */




/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form label { font-size: 0.875rem; font-weight: 500; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--foreground);
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--primary);
}
.form textarea { min-height: 120px; resize: vertical; }

/* ---------- Filter chips (gallery) ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 2rem 0; }
.chip {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--primary); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- Contact Info Card ---------- */
.contact-info-card {
  background: var(--card);
  border: 1px solid rgba(42, 31, 28, 0.12);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 2rem;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 106, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.25rem 0;
  font-family: var(--font-sans);
}
.contact-link {
  margin: 0;
  line-height: 1.4;
}
.contact-link a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link a:hover {
  color: var(--rose);
  text-decoration: underline;
}
.contact-text {
  margin: 0 0 0.25rem 0;
  color: var(--foreground);
  font-weight: 500;
  line-height: 1.4;
}
.contact-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.5rem;
  }
  .contact-item {
    gap: 0.75rem;
  }
}

/* ---------- Reviews ---------- */
.review {
  background: var(--card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.review .review-image {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 1rem;
  min-height: 260px;
}
.review .review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review .stars { color: var(--accent); margin-bottom: 0.5rem; }
.review .name { font-weight: 600; margin-top: 0.75rem; }
.review .date { font-size: 0.8rem; color: var(--muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--rose));
}
.cta-banner h2 { color: #fff; }
.cta-banner p { margin: 1rem auto 2rem; max-width: 32rem; opacity: 0.9; }

/* ---------- Footer ---------- */
.footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer a { display: block; padding: 0.25rem 0; font-size: 0.875rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Scroll reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  z-index: 40;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }


/* ---------- Back to top float button ---------- */
.top-float {
  position: fixed;
  /* moved to the same spot the WhatsApp float used to occupy */
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: none; /* toggled via JS */
  align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(160,128,74,0.25);
  z-index: 40;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.top-float.show { display: flex; opacity: 1; transform: translateY(0); }
.top-float:hover { transform: scale(1.06); }
.top-float svg { display: block; }



