/* style.css - polished, cohesive abstract boutique theme */

/* ====== Google Fonts ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ====== Reset ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: linear-gradient(135deg,#fff7fb 0%,#fffaf0 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ====== Utility ====== */
.container {
  width: 94%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ====== Header / Nav ====== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: #9a3f78;
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: #203033;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 6px;
  transition: color .22s, transform .12s;
  border-radius: 6px;
}

.nav-links a:hover, .nav-links a.active {
  color: #a64d79;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #333;
  user-select: none;
}

/* ====== Hero ====== */
.hero {
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(166,77,121,0.06) 0 120px, transparent 120px),
    radial-gradient(circle at 90% 80%, rgba(166,77,121,0.04) 0 200px, transparent 200px);
}

.hero-content {
  text-align: center;
  max-width: 920px;
  padding: 28px;
  border-radius: 16px;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  color: #9a3f78;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.hero-content p {
  color: #4a4a4a;
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 740px;
  margin: 0 auto 18px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg,#b44a7b,#92355f);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(164,77,121,0.14);
  transition: transform .18s, box-shadow .18s;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(146,53,95,0.18);
}

/* ====== Section Titles ====== */
.section {
  padding: 80px 10%;
  position: relative;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #a64d79;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #a64d79;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* ====== About Section ====== */
.about-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.about-content {
  flex: 1 1 45%;
}

.about-content .section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* ====== Why Choose Us ====== */
.why-section {
  background: linear-gradient(135deg, #fff5f8, #fbe3eb);
  border-top: 2px solid #f3d1dc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card h3 {
  color: #a64d79;
  margin-bottom: 12px;
}

.why-card p {
  color: #444;
  font-size: 0.98rem;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ====== Services ====== */
.services {
  padding: 80px 10%;
  background-color: #f9f5f7;
  text-align: center;
}

.section-subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.section-subtext {
  color: #555;
  font-size: 1.1em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-content {
  padding: 20px;
}

.service-card h3 {
  color: #4a148c;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.service-card p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6em;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* ====== Portfolio ====== */
.portfolio {
  padding: 80px 10%;
  background-color: #fff;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover { transform: translateY(-6px); }

.portfolio-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(106, 27, 154, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.4s ease;
}

.portfolio-item:hover .overlay { height: 100%; }

.overlay h3 {
  font-size: 1.3em;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stitching-section {
    text-align: center;
    padding: 30px;
}

.stitching-section h1 {
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
}



/* ====== Footer ====== */
.site-footer {
  background: linear-gradient(180deg,#7b2e57,#a64d79);
  color: #fff;
  padding: 36px 0 18px;
  margin-top: 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tag { color: rgba(255,255,255,0.92); font-size: 0.95rem; max-width: 260px; }

.footer-nav h4, .footer-contact h4, .footer-social h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.96);
}

.footer-nav a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 500;
  transition: opacity .15s;
}

.footer-nav a:hover { opacity: 0.85; }


.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  transition: transform .16s, background .16s;
}


.footer-social i {
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover i {
  color: #ffb6c1;
  transform: scale(1.2);
}

.footer-contact i {
  color: #fff;
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .navbar { padding: 12px 3%; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    right: 12px;
    top: 64px;
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .nav-links.show { display: flex; }
  .nav-links a { color: #333; }
  .hero-content h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 40px; }
  .hero-content h2 { font-size: 1.6rem; }
}
