* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #deaa88;
  color: #333;
}

/* Header styling */
header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #e9967a;
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: center;
}


.logo {
  width: auto;
  height: auto
  ;
  background-color:  none;
  border-radius: 8px;
  position:center;
}

.site-title {
  flex-grow: 1;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #444;
}





/* 🖼️ Preview Image Container */
.preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.preview-img {
  max-width: 120px;
  max-height: 120px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: none;
}









/* 🌐 Menubar Base Styles */
.menu-bar {
  background-color: grey;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.menu-bar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-bar li {
  margin: 0 15px;
}

.menu-bar a {
  display: block;
  padding: 14px 12px;
  text-decoration: none;
  color: #704241;
  font-weight: 500;
  transition: all 1s ease; /* 👈 slowed down transition */
  border-radius: 5px;
}

/* 🌟 Hover Effects */
.menu-bar a:hover {
  background-color: #deaa88; /* dark grey */
  color: black;
  box-shadow: 0 0 12px  #D2691E; /* golden glow */
  text-decoration: none;
}

/* 📱 Responsive Layout */
@media (max-width: 768px) {
  .menu-bar ul {
    flex-direction: column;
    align-items: center;
  }

  .menu-bar li {
    margin: 5px 0;
  }

  .menu-bar a {
    width: 90%;
    text-align: center;
  }
/* 📱 Responsive Button Styling */
@media (max-width: 768px) {
  .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-actions a {
    width: 90%;
    max-width: 300px;
    padding: 12px 20px;
    margin: 6px 0;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
  }
}


}





/* Main content area */
.content-area {
  min-height: 400px;
  padding: 40px 20px;
}

/* Footer styling */
footer {
  background-color: #ba8759;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #f4a460;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-contact {
  color: #777;
}

.founder-summary {
  max-width: 90%;
  margin: 40px auto;
  padding: 30px;
  background-color:#deaa88;
  border-left: 6px solid gold;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 16.5px;
  line-height: 1.75;
  color: #444;
  font-family: 'Georgia', serif;
}

.founder-summary h2 {
  font-size: 24px;
  color: #b8860b;
  margin-bottom: 15px;
  font-family: 'Segoe UI', sans-serif;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.product-tile {
  width: 300px;
  background-color:#cd853f;
  border:none ;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}



.product-tile p {
  margin-top: 10px;
  font-weight: 500;
  color: black;
}

.product-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(218, 165, 32, 0.35);
}


.product-tile img {
  width: auto;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  image-rendering: auto;
  filter: contrast(120%) brightness(108%) saturate(100%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease-in-out;
}
a {
  text-decoration: none;         /* Removes underline */
  color: inherit;                /* Keeps the link color consistent with content */
  display: block;                /* Makes the whole tile clickable */
}

a:hover .product-tile {
  background-color: #E97451;     /* Light grey background on hover */
  transform: scale(1.02);        /* Slight zoom effect */
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
}

.product-tile {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.pens-page {
  font-family: Arial, sans-serif;
}

.pens-hero {
  background-color: #222;      /* Dark background */
  color: #fff;                 /* White text */
  padding: 40px 20px;
  text-align: center;
}

.pens-hero h1 {
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pens-gallery {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 20px;
  align-items: center; /* ✅ Centers the image blocks */
}

.pen-image {
  position: relative;
  display: block;
  width: 90%;               /* ✅ Scales down the size slightly */
  max-width: 500px;         /* ✅ Controls max size */
  margin: 0 auto;           /* ✅ Centers within flex column */
}

.pen-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pen-caption {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}



button {
  background-color: #a97442;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #8d6236;
}

.preview-box {
  margin-top: 15px;
}

.preview-box img {
  max-width: 380px;
  margin-top: 10px;
  display: block;
  border: 1px solid #d9c3a1;
  border-radius: 8px;
}



    .marquee-track {
      display: flex;
      width: max-content;
      animation: scroll 25s linear infinite;
    }

    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }

    .product-card {
      flex: 0 0 auto;
      width: 240px;
      margin: 0 20px;
      text-align: center;
    }

    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .product-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-top: 10px;
      color: #333;
    }

    .product-card a {
      text-decoration: none;
      color: inherit;
    }
	
	/* ===== Marquee Ribbon Styles ===== */

.marquee-container {
  background-color: #BD9A7A; /* Light grey ribbon background */
  overflow: hidden;
  padding: 30px 0;
      border-top: 2px solid FF884D;
      border-bottom: 2px solid #FBB769;
    }




.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused; /* Pause animation on hover */
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* Adjust based on product duplication */
  }
}

.product-card {
  flex: 0 0 auto;
  width: 220px;
  margin: 0 15px;
  text-align: center;
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
  box-shadow: 0 0 18px 4px gold, 0 0 40px 10px rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
}

.product-title {
  font-weight: bold;
  margin-top: 8px;
  font-size: 1rem;
  color: #333;
}


/* ===== Marquee Ribbon Extras ===== */
.product-description {
  text-align: center;
  padding: 10px 15px;
  font-size: 1.1rem;
  color: #444;
  background-color: #deaa88;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* ===== Contact Info Box ===== */
.contact-box {
  max-width: 800px;
  margin: 40px auto 80px auto;
  background-color:  #C2B280;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #333;
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #222;
}

.contact-box p {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-box a {
  color: #0077cc;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.custom-order-form {
  background-color: #5B3924;
  padding: 30px;
  color: #fff;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Segoe UI', sans-serif;
}

.custom-order-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.custom-order-form input,
.custom-order-form select,
.custom-order-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: none;
  border-radius: 5px;
  background-color: #DCC7AA;
  color: #333;
}

.preview-box {
  margin-top: 20px;
  text-align: center;
}

.preview-box img {
  max-width: 100%;
  height: auto;
  border: 2px solid #a9825a;
  border-radius: 8px;
}

.checkboxes {
  margin-top: 15px;
}

.checkboxes label {
  display: block;
  margin-bottom: 5px;
}

.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  font-size: 16px;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  color: #fff;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  background-color: #DCC7AA;
  border-radius: 4px;
  border: 2px solid #a9825a;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #5B3924;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}




.form-actions {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

.submit-btn {
  background-color: #4682B4;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.floating-button {
  position: fixed;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  background-color: black;
  color: white;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  animation: glow 2s infinite, bgFade 6s infinite alternate;
  z-index: 1000;
}

/* Glowing animation (golden) */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px gold, 0 0 30px goldenrod;
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
  }
}

/* Background fade from black to white */
@keyframes bgFade {
  0% {
    background-color: black;
    color: white;
  }
  100% {
    background-color: white;
    color: black;
  }
}

