/* ===============================
   GLOBAL STYLES (shared)
   =============================== */
   
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Poppins', sans-serif;
}

/* ===============================
   REGISTRATION PAGE STYLES
   Scoped under .reg-page
   =============================== */
/* 🎨 Common page setup */
body.reg-page {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #6f42c1, #4a00e0);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/* 🧩 Main registration container */
.reg-container {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  margin-top: 120px;
}

/* 📸 Left Image */
.reg-img-box {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1460661419201-fd4cecdf8a8b?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8YXJ0fGVufDB8fDB8fHww") center/cover no-repeat;
  min-height: 500px;
}

/* 📝 Right Form */
.reg-form-box {
  flex: 1;
  padding: 50px;
}

.reg-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.reg-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.reg-input-box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reg-input-box label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #555;
}

.reg-input-box input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: 0.3s;
}

.reg-input-box input:focus {
  border-color: #6f42c1;
  box-shadow: 0 0 5px rgba(111, 66, 193, 0.3);
  outline: none;
}

/* 👩‍🦰 Gender selection */
.reg-gender-box {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #555;
}

/* 💜 Button */
.reg-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #6f42c1, #d63384);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.reg-btn:hover {
  background: linear-gradient(45deg, #d63384, #6f42c1);
  transform: translateY(-2px);
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .reg-container {
    flex-direction: column;
    max-width: 95%;
  }

  .reg-img-box {
    display: none;
  }

  .reg-form-box {
    padding: 30px 20px;
  }

  .reg-form-row {
    flex-direction: column;
  }
}
/* ==========================
   INDEX PAGE STYLES
   ========================== */
.index-page {
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
}
/* -----------------------------
   Full-Screen Logo Splash
-------------------------------*/

/* Preloader full screen */
#logoSplash {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  background: transparent;
}

/* Animated dark gradient background */
.background-animation {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #0d0d0d, #1a1a2e, #2e1a47, #1a1a2e);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 1.5s ease; /* smooth fade */
}

/* Gradient movement animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Logo Animation: emerges from background */
.logo-splash {
  width: 300px;
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5) blur(10px);
  animation: logoEmergence 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.2));
  transition: all 1.5s ease; /* smooth fade/shrink */
}

/* Logo emerges animation keyframes */
@keyframes logoEmergence {
  0% {
    transform: scale(0.5) translateY(0) blur(10px);
    opacity: 0;
  }
  40% {
    transform: scale(1.2) translateY(-30px) blur(3px);
    opacity: 1;
  }
  70% {
    transform: scale(0.8) translateY(-10px) blur(0);
    opacity: 1;
  }
  100% {
    transform: scale(0.6) translateY(-20px) blur(0);
    opacity: 1;
  }
}

/* Fade out splash smoothly */
body.loaded #logoSplash {
  pointer-events: none;
}

/* Fade out background and logo smoothly */
body.loaded .background-animation {
  opacity: 0;
}

body.loaded .logo-splash {
  opacity: 0;
  transform: scale(0.3) translateY(-50px); /* shrink while fading */
}

/* Optional: floating blurred shapes for ambient effect */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(100px);
  width: 200px;
  height: 200px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh; /* adjust height */
  background: url("/public/images/frames.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ff4500; /* orange text */
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.btn-explore {
  display: inline-block;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-explore:hover {
  background: linear-gradient(135deg, #e67e22, #c0392b);
}


.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* stays above everything */
  background: #fff; /* ensures background */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Best Sellers Section */
.best-sellers {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}
.best-sellers .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}
.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
}
.product-card p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.product-card .btn {
  margin-top: 10px;
  padding: 10px 15px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.product-card .btn:hover {
  background: #d62828;
}
.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Shop by Categories */
.categories {
  text-align: center;
  padding: 50px 20px;
}
.categories .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding: 10px 20px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.category-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.category-card h3 {
  padding: 10px;
  background: #f8f8f8;
}
.category-card:hover {
  transform: scale(1.05);
}

/* Best Sellers Section */
.best-sellers {
  padding: 50px 20px;
  background: #fafafa;
  text-align: center;
}
.best-sellers .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}
.product-card h3 {
  margin: 10px 0;
  font-size: 18px;
}
.product-card p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.product-card .btn {
  margin-top: 10px;
  padding: 10px 15px;
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.product-card .btn:hover {
  background: #d62828;
}
.product-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Features Section */
.features-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.features-section .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.features-section .section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 40px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #8B0000; /* Matching footer color */
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.feature-icon {
  font-size: 40px;
  color: #8B0000;
}
/* Team Section */
.team-section {
  background: #fff;
}

.team-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.team-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #8B0000;
}

.team-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8B0000;
}

.team-card .role {
  color: #666;
  font-size: 0.95rem;
}

.team-card p {
  font-size: 0.9rem;
  color: #444;
}

.social-links a {
  color: #8B0000;
  margin: 0 6px;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #333;
}


/* Footer */
.index-page footer {
  margin-top: 50px;
}
/* ===========================
   Contact Us Page Styles
   =========================== */

body {
  font-family: 'Poppins', sans-serif;
}

.contact-header {
  text-align: center;
  padding: 40px 15px;
}
.contact-header h1 {
  font-weight: 600;
  font-size: 2rem;
}
.contact-header p {
  color: #555;
  font-size: 1rem;
}

.artist-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
/* Responsive Image */
@media (max-width: 992px) {
  .artist-image {
    max-height: 300px;
  }
}

.contact-section {
  padding: 40px 15px;
}

.sidebar-links a {
  display: block;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
}
.sidebar-links a:hover {
  text-decoration: underline;
}

/* Contact form inputs */
.contact-form input,
.contact-form textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 14px;
  font-size: 1rem;
}
.contact-form button {
  border-radius: 8px;
  padding: 12px 30px;
  width: 100%;
}

/* Get in touch section */
.get-in-touch {
  background-color: #f8f9fa;
  padding: 40px 15px;
  text-align: center;
}
.get-in-touch button {
  padding: 12px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 200px;
}

/* Sidebar on small screens */
@media (max-width: 767px) {
  .sidebar-links {
    text-align: center;
    margin-bottom: 20px;
  }
  .sidebar-links a {
    padding: 4px 0;
  }
}
/* ---------------------- */
/* Styles for login.html  */
/* ---------------------- */
body.login-page {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #6f42c1, #4a00e0);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered white card container */
.login-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  margin-top: 120px;
  display: flex;
}

/* Left Image Section */
.login-left {
  background: #6f42c1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: 1;
}
.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Form Section */
.login-right {
  padding: 40px;
  flex: 1;
}
.login-right h2 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.login-right p {
  font-size: 14px;
  color: #666;
}

.login-page .form-control {
  border-radius: 10px;
  padding: 12px;
}

.login-page .btn-primary {
  background: linear-gradient(45deg, #6f42c1, #d63384);
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}
.login-page .btn-primary:hover {
  background: linear-gradient(45deg, #d63384, #6f42c1);
  transform: translateY(-2px);
}

/* Social login buttons (optional) */
.social-btn {
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
}
.social-btn img {
  width: 20px;
  margin-right: 8px;
}

/* 🔹 Responsive Adjustments (mobile view fix) */
@media (max-width: 992px) {
  .login-container {
    flex-direction: column;
    max-width: 95%;
    margin-top: 100px;
  }

  .login-left {
    display: none; /* Hide image only on smaller screens */
  }

  .login-right {
    padding: 30px 20px;
  }

  .login-page {
    align-items: flex-start;
  }
}

/* =========================
   SHOP PAGE STYLES
   ========================= */
.shop-page {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

.shop-page .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.shop-page .product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-page .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.shop-page .product-card img {
  width: 100%;
  height: 300px;           /* height same rakhi */
  object-fit: contain;     /* ensures full image is visible */
  background-color: #f8f9fa; /* optional: contrast for smaller images */
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}


.shop-page .product-info {
  padding: 15px;
  text-align: center;
}

.shop-page .product-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.shop-page .product-info p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

.shop-page .price {
  font-weight: 600;
  color: #e63946;
  margin-right: 8px;
}

.shop-page .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.85rem;
}

.shop-page .stock-info {
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  margin-top: 6px;
}

.shop-page .view-all {
  float: right;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  color: #6f42c1;
}

.shop-page .view-all:hover {
  text-decoration: underline;
}

/* ================================
   About Page Styles
   ================================ */

.about-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.about-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.about-header .highlight {
  color: #e85d24; /* orange accent */
  font-family: 'Playfair Display', serif;
}

.about-header p {
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: start;
}

.team-member {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.team-member h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}
