/* Instagram-like UI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Unbounded', sans-serif;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
body:not(.dark-mode) .navbar-glass {
  background: rgba(255, 255, 255, 0.6); /* more visible glass on white background */
  color: #000;
}

body:not(.dark-mode) .navbar-glass button,
body:not(.dark-mode) .navbar-glass a {
  color: #111;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.3);
}

body:not(.dark-mode) .navbar-glass button:hover,
body:not(.dark-mode) .navbar-glass a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}


/* Light Theme (default) */
body:not(.dark-mode) {
  background: #fafafa;
  color: #262626;
}

/* Dark Theme */
body.dark-mode {
  background: #0e0e10;
  color: #ffffff;
}

h1, h2 {
    text-align: center;
    margin: 20px 0;
}
.intro-text {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Light Mode */
body:not(.dark-mode) .intro-text {
    background: rgba(255, 255, 255, 0.8);
    color: #1f1f1f;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Dark Mode */
body.dark-mode .intro-text {
    background: rgba(53, 47, 81, 0.2);
    color: #e0e0ff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 5px rgba(145, 198, 255, 0.2);
}
.intro-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro-text h1 span {
    color: #8a2be2;
    font-weight: bold;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}


/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  padding: 15px 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Logo */
.nav-left .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}
  
 .nav-right {
  display: flex;
  gap: 10px;
}

/* === Button Glow on Hover === */
.navbar button {
  background: #352f51;
  color: rgb(145, 198, 255);
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.navbar button:hover {
  background: #7abaff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(122, 186, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* SPRING */
}


/* Dark Mode Support */
.dark-mode .navbar {
  background-color: rgba(34, 34, 34, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* === Auto-Hide Navbar Animation === */
.navbar {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.hide {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.show {
  transform: translateY(0);
  opacity: 1;
}

.dark-mode .navbar button {
    background: #ffcc00;
    color: #222;
}

.dark-mode .navbar button:hover {
    background: #e6b800;
}


/* Instagram-like Grid Layout */
.wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5px;
    padding: 50px 10px; /* Adjusted padding for navbar */
}

/* Instagram Post Styling */
.wall-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.wall-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.wall-item p {
    font-family: 'Raleway', sans-serif;  /* Clean modern font */
    font-size: 14px;
    color: #555;  /* Slightly gray for a soft look */
    margin-top: 8px;
    text-align: center;
}

/* Hover Effect */
.wall-item:hover {
    transform: scale(1.03);
}

/* Buttons */
button {
    background-color: #0095f6;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0077cc;
}

a {
    color: rgb(145, 198, 255); /* your preferred color */
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  a:visited {
    color: rgb(145, 198, 255); /* override purple visited color */
  }

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Modal */

.modal-content {
    position: relative;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    max-width: 500px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999; 
}
.modal img {
    width: 90%;
    border-radius: 10px;
    object-fit: contain;
}
.modal p {
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 10px 0;
}
#modalDescription {
    color: #00FFFF;           
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    padding: 0 20px;
}

/* Footer (Like Instagram Web) */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #555;
}

.footer {
    
    color: #e6b800;
    padding: 20px;
    text-align: center;
}

.footer .footer-links {
    margin-bottom: 15px;
}

.footer .footer-links a {
    color: #e6b800;
    margin: 0 15px;
    font-size: 16px;
    text-decoration: none;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}
/* Social Media Buttons */
.social-buttons {
    text-align: center;
    margin-top: 20px;
    background-color: #e6b800;
}

.social-buttons a {
    margin: 0 10px;
    font-size: 24px;
    color: #262626;
    transition: 0.3s;
}

.social-buttons a:hover {
    color: #0095f6;
}

/* Shop Page Only Styling */
body.shop-page {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color, #add2f5);
    color: var(--text-color, #222);
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
  }
  .shop-intro {
  text-align: center; 
  padding: 50px 20px; 
  background-color: #f1f1f1; 
  border-radius: 15px; 
  margin: 50px auto;
  max-width: 900px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
}

.shop-intro h2 {
  font-size: 2.2rem; 
  color: #222;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.shop-intro p {
  font-size: 1.2rem; 
  color: #666; 
  line-height: 1.8; 
  max-width: 800px; 
  margin: 0 auto;
}

  .shop-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background-color: #f8f8f8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  body.dark-mode .shop-navbar {
    background-color: #1a1a1a;
  }
  
  .shop-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
  }
  
  body.dark-mode .shop-logo a {
    color: #fff;
  }
  
  .shop-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .shop-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
  }
  
  body.dark-mode .shop-nav-links a {
    color: #fff;
  }
  
  .shop-nav-links .active-link {
    color: #FF69B4;
    border-bottom: 2px solid #FF69B4;
  }
    
  
  
  .shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    max-width: 1200px;
    margin: auto;
  }
 /* 🔥 Product Card Styling */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  
  /* When the card becomes visible (when it enters the viewport) */
  .product-card.visible {
    opacity: 1;  /* Make it fully visible */
    transform: translateY(0);  /* Reset position to its normal spot */
  }
  
  /* Hover effect */
.product-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Add a shadow to make the card "pop" */
  }
  
  /* Optional: Add a smooth background color change */
  .product-card:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Slight background color change on hover */
  }
  
  /* Optional: Scale image on hover */
  .product-card img {
    transition: transform 0.3s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.1); /* Slightly zoom the image */
  }
  
  .product-card img {
    width: 100%;
    border-radius: 15px;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  .product-card p {
    font-size: 0.95rem;
    color: #666;
  }
  
  .product-card a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #7f5af0;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.2s ease;
  }
  
  .price-tag {
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
    color: #7f5af0;
  }
  
  /* 🧃 Tag like trending, new etc */
  .tag {
    background: #ffe600;
    color: #000;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-left: 10px;
  }
  
  /* 🌈 Category Buttons */
  .shop-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    margin-top: 2rem;
  }
  
  .category-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    background: #eaeaea;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .category-btn.active,
  .category-btn:hover {
    background: #7f5af0;
    color: white;
  }
  .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color, #222);
  }
  
  .right-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .home-link {
    text-decoration: none;
    font-size: 1rem;
    color: #7f5af0;
  }

  .theme-toggle {
    cursor: pointer;
    color: var(--text-color);
    transition: transform 0.2s;
  }
  
  .theme-toggle:hover {
    transform: scale(1.1);
  }

  /* Default state of the button */
.buy-now-btn {
    padding: 10px 20px;
    background-color: #f37254; /* Color of the button */
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Hover effect for the button */
  .buy-now-btn:hover {
    transform: scale(1.1); /* Slightly enlarge the button */
    background-color: #ff7f66; /* Change background color when hovered */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Add a subtle shadow to the button */
  }
  
  /* Optional: Add a little pop on click */
  .buy-now-btn:active {
    transform: scale(0.95); /* Make the button shrink slightly when clicked */
    background-color: #ff5e42; /* Darker color on click */
  }
  
/* === Mobile Responsive === */
@media (max-width: 768px) {
  .nav-right {
      flex-direction: column;
      width: 100%;
      display: none;
      margin-top: 10px;
  }

  .nav-right.active {
      display: flex;
      animation: fadeInDown 0.3s ease-in-out;
  }

  .navbar {
      align-items: flex-start;
      padding: 15px;
  }

  .nav-toggle {
      display: block;
      position: absolute;
      right: 20px;
      top: 18px;
  }

  .navbar button {
      width: 100%;
      text-align: center;
      max-width: 300px;
  }
}
/* Tablet Version (iPad or Similar) */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar {
      flex-direction: row;
      justify-content: space-between;
      padding: 20px 30px;
  }

  .navbar button {
      font-size: 14px;
      padding: 8px 16px;
  }

  .wall-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}
/* Desktop and Large Tablet - Horizontal Layout */
@media (min-width: 1025px) {
  .navbar {
      flex-direction: row;
      justify-content: space-around;
      padding: 20px 50px;
  }

  .navbar button {
      font-size: 16px;
      padding: 10px 20px;
  }

  .wall-grid {
      grid-template-columns: repeat(4, 1fr); 
  }
}
/* === Animation for Mobile Dropdown === */
@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.navbar {
  animation: slideFadeIn 0.6s ease-out;
}
.new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #99F2E9;
  color: #0D0D0D;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 5px 8px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: bounceIn 0.4s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
.navbar-glass {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 30px;
  margin: 20px auto;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  width: fit-content;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}
.navbar-glass button, .navbar-glass a {
  font-family: 'Orbitron', sans-serif;
  color: white;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}
.navbar-glass button:hover, .navbar-glass a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
  font-family: 'Orbitron', sans-serif;
  color: #ff00cc;
  text-shadow: 0 0 10px #ff00cc;
}
/* FOOTER */
.footer-glow {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #888;
}
.footer-glow .footer-links a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
}
.footer-glow .footer-links a:hover {
  color: #fff;
}

