*{
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  z-index: 1000;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: orangered;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  font-weight: 500;
}

.icons {
  display: flex;
  align-items: center;
}

.icon {
  margin-left: 15px;
  color: #333;
  font-size: 18px;
  text-decoration: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 0;
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }
}



/* Hero Section Styling */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #FFE5B4; /* Peach Fuzz */
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 2.5em;
  color: #5D4037; /* Dark Brown for contrast */
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
}

.shop-now {
  background-color: #FFB6B9; /* Soft Coral */
}

.customize {
  background-color: #B3E5FC; /* Sky Blue */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}



/* Hero Section Styles */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #FFF8E7; /* Cream Beige */
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  background: url('doodle-stars.png') repeat;
  opacity: 0.1;
  inset: 0;
  z-index: 0;
}

.hero-text {
  flex: 1;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4A4A4A;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 1rem;
}

.shop {
  background-color: #FFB6B9; /* Soft Coral */
  color: #fff;
}

.customize {
  background-color: #B3E5FC; /* Sky Blue */
  color: #333;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-image {
    /* margin-bottom: 2rem; */
    display: none;
  }
}


  /* Featured Products Section */

  .featured-section {
      padding: 60px 20px;
      background: #FFF8E7; /* Cream Beige */
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .section-title {
      font-size: 2rem;
      color: #D8BFD8; /* Lilac Mauve */
      margin-bottom: 40px;
    }

    .title_for_notebookSection{
      background-color: #B3E5FC;
      color: black;
    }
    
    .product-slider {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 10px;
      margin-top: 10px;
    }
    
    .product-card {
      flex: 0 0 calc(50% - 10px); /* 2 cards per row on small screens */
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      scroll-snap-align: start;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
    }
    
    .product-img {
      width: 100%;
      height: 180px; /* or adjust as needed */
      object-fit: cover; /* keeps aspect ratio while filling space */
      border-radius: 12px;
      transition: opacity 0.3s ease;
    }
    
    .product-actions {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    
    .cart-btn,
    .wishlist-btn {
      background: #FFE5B4;
      border: none;
      padding: 8px 12px;
      border-radius: 12px;
      cursor: pointer;
      font-size: 0.9rem;
    }
    
    .cart-btn:hover {
      background: #FFB6B9;
    }
    
    .wishlist-btn:hover {
      background: #E6E6FA;
    }

    .product-slider {
      display: flex;
      flex-wrap: nowrap;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 20px;
      scroll-behavior: smooth;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    
    /* .product-slider::-webkit-scrollbar {
      display: none;
    }
     */

     @media (min-width: 768px) {
      .product-slider {
        flex-wrap: wrap;
        justify-content: center;
      }
    
      .product-card {
        flex: 0 0 calc(25% - 20px); /* 4 cards per row on tablets/desktops */
      }
      .product-img {
        width: 100%;
        height: 220px; /* or adjust as needed */
        object-fit: cover; /* keeps aspect ratio while filling space */
        border-radius: 12px;
        transition: opacity 0.3s ease;
      }

    }
    
    

/* Floating stars animation */
.floating-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-stars span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: #FFE5B4; /* pastel star */
  border-radius: 50%;
  opacity: 0.6;
  animation: float 10s linear infinite;
}

.floating-stars span.float {
  font-size: 20px;
  position: absolute;
  animation: float 12s linear infinite;
  opacity: 0.4;
  color: #D8BFD8; /* pastel purple */
}


.floating-stars span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  background-color: #FFB6B9;
}
.floating-stars span:nth-child(2) {
  left: 30%;
  animation-delay: 1s;
  background-color: #CFFFE5;
}
.floating-stars span:nth-child(3) {
  left: 50%;
  animation-delay: 2s;
  background-color: #E6E6FA;
}
.floating-stars span:nth-child(4) {
  left: 70%;
  animation-delay: 3s;
  background-color: #D8BFD8;
}
.floating-stars span:nth-child(5) {
  left: 90%;
  animation-delay: 4s;
  background-color: #FFFACD;
}

@keyframes float {
  0% {
    top: 100%;
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    top: -10%;
    transform: translateY(-100%) scale(1);
    opacity: 0;
  }
}
@keyframes float2 {
  15% {
    top: 100%;
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  65% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
  85% {
    top: -10%;
    transform: translateX(-100%) scale(1);
    opacity: 0;
  }
}


/* Modal overlay */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1000; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal content */
.modal-content {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 20px;
width: 80%;
max-width: 600px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Close button */
.close-button {
position: absolute;
top: 10px;
right: 15px;
font-size: 1.5rem;
cursor: pointer;
}

.image-gallery {
text-align: center;
}

#main-image {
width: 100%;
max-width: 400px;
height: auto;
border-radius: 8px;
}

.thumbnail-container {
display: flex;
justify-content: center;
margin-top: 10px;
}

.thumbnail {
width: 60px;
height: auto;
margin: 0 5px;
cursor: pointer;
border-radius: 4px;
transition: transform 0.3s ease;
}

.thumbnail:hover {
transform: scale(1.1);
}

.page {
display: none;
padding: 20px;
}

.page.active {
display: block;
}

/* About Section Design */

/* Container Styling */
#about-section {
padding: 60px 20px;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
font-family: 'Poppins', sans-serif;
color: #2c3e50;
max-width: 800px;
margin: auto;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Headings */
#about-section h2 {
font-size: 2.8em;
margin-bottom: 20px;
color: #34495e;
text-align: center;
}

#about-section h3 {
font-size: 1.8em;
margin-top: 40px;
color: #2c3e50;
border-bottom: 2px solid #bdc3c7;
padding-bottom: 10px;
}

/* Paragraphs and Lists */
#about-section p {
font-size: 1.1em;
line-height: 1.8;
margin-bottom: 20px;
}

#about-section ul {
list-style-type: disc;
margin-left: 20px;
margin-bottom: 20px;
}

#about-section li {
margin-bottom: 10px;
}

/* Form Styling */
#customization-form {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 20px;
}

#customization-form label {
font-weight: 600;
margin-bottom: 5px;
color: #2c3e50;
}

#customization-form input,
#customization-form select {
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1em;
background-color: #ffffff;
transition: border-color 0.3s, box-shadow 0.3s;
}

#customization-form input:focus,
#customization-form select:focus {
border-color: #3498db;
box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
outline: none;
}

/* Submit Button */
#customization-form button {
padding: 14px 20px;
background-color: #25D366;
color: #ffffff;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}

#customization-form button:hover {
background-color: #1ebe5d;
}

/* Responsive Design */
@media (max-width: 600px) {
#about-section {
  padding: 40px 10px;
}

#about-section h2 {
  font-size: 2em;
}

#about-section h3 {
  font-size: 1.5em;
}
}

/* Customization Form Modal */
#customize-section{
width: 50%;
padding: 60px 20px;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
font-family: 'Poppins', sans-serif;
color: #2c3e50;
max-width: 800px;
margin: auto;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
@media (max-width: 600px){
  #customize-section{
    width: 100%;
    padding: 40px 10px;
  }
}



/* FAQ Section */
#faq-section {
padding: 60px 20px;
background-color: #f9f9f9;
}

.faq-container {
max-width: 1000px;
margin: auto;
}

.faq-container h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 40px;
}

.faq-item {
margin-bottom: 20px;
}

.faq-item h3 {
font-size: 1.5em;
margin-bottom: 10px;
}

.faq-item p {
font-size: 1.1em;
line-height: 1.6;
}



/* Contact page  */
/* Contact Section Styling */
#contact-section {
padding: 60px 20px;
background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
font-family: 'Poppins', sans-serif;
color: #102a43;
}

.contact-container {
max-width: 1000px;
margin: auto;
background-color: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.contact-container h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 10px;
}

.contact-container p {
text-align: center;
font-size: 1.1em;
margin-bottom: 40px;
}

.contact-details {
display: flex;
flex-wrap: wrap;
gap: 40px;
}

.contact-info, .contact-form {
flex: 1 1 45%;
}

.contact-info h3, .contact-form h3 {
font-size: 1.5em;
margin-bottom: 20px;
}

.contact-info p {
margin-bottom: 10px;
font-size: 1em;
}

.contact-info a {
color: #0a7cff;
text-decoration: none;
}

.contact-info a:hover {
text-decoration: underline;
}

.contact-form label {
display: block;
margin-bottom: 5px;
font-weight: 600;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1em;
margin-bottom: 20px;
background-color: #f9f9f9;
transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
border-color: #0a7cff;
box-shadow: 0 0 8px rgba(10, 124, 255, 0.3);
outline: none;
}

.contact-form button {
padding: 14px 20px;
background-color: #0a7cff;
color: #ffffff;
border: none;
border-radius: 8px;
font-size: 1.1em;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}

.contact-form button:hover {
background-color: #005bb5;
}

/* Floating WhatsApp Button */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25D366;
color: #fff;
border-radius: 50%;
text-align: center;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
}

.whatsapp-float img {
width: 30px;
height: 30px;
}

@media (max-width: 768px) {
.whatsapp-float {
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}
}


/* Social Media Links */
.social-links {
text-align: center;
margin-top: 20px;
}

.social-links a {
margin: 0 10px;
display: inline-block;
}

.social-links img {
width: 40px;
height: 40px;
transition: transform 0.3s;
}

.social-links img:hover {
transform: scale(1.1);
}



.buy-now-btn {
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
  background-color: #1ebe5d;
}
