@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Oswald:wght@200..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "poppins", sans-serif;
  color: #101010;
  background-color: #ffffff;
}

html,
body {
  overflow-x: hidden;
}

.header_section {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  width: 100%;
}

.navbar {
  width: 100%;
  max-width: 1400px;
  display: flex;
  height: 110px;
  margin-top: 0;
  align-items: end;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: start;
  z-index: 2;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.03);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle-label span {
  display: block;
  width: 1.75rem;
  height: 2px;
  background: #333;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-wrapper {
  display: flex;
  flex-direction: row;
}
/* Dropdown Styling */
.nav-item {
  position: relative;
}

/* Initially hide the dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: -100%;
  border-radius: 8px;
  width: 40vw;
  height: 250px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show the dropdown on hover */
.nav-item.dropdown-parent:hover .dropdown {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.brand-list {
  width: 150px;
}

.brand-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.brand-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.brand-list li {
  padding: 8px 0;
  cursor: pointer;
}

.brand-list li:hover {
  color: #910303;
  transition: all 500ms ease-out ;
}

.nav-item.dropdown-parent:hover .brand-image img {
  opacity: 1; /* Image fades in */
}

.brand-image {
  width: 200px;
  height: 200px;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease; /* Smooth image transition */
  opacity: 0;
}

/* Adjustments for better responsiveness */
@media (max-width: 768px) {
  .dropdown {
    flex-direction: column;
    height: auto;
  }

  .brand-image {
    justify-content: flex-start;
  }
}

/* Mobile Styles */
@media (max-width: 991px) {
  .nav-toggle-label {
    display: block;
    margin-bottom: 15px;
  }

  .navbar{
    padding: 0;
    margin: 0;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    padding: 5rem 1.5rem 2rem;
    transition: 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    width: 100%;
    margin: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
  }

  /* Mobile Menu Animation */
  .nav-toggle:checked ~ .nav-wrapper {
    right: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .nav-menu {
    margin-left: auto;
  }
}

/* Print Styles */
@media print {
  .header_section {
    display: none;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  width: 100vw;
}

.hero-content {
  padding: 1rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

h1 {
  font-family: Lora;
  font-size: 4.5rem;
  line-height: 1.1;
  color: #000;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.highlight {
  color: #000;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 8px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  animation: lineThrough 0.8s ease forwards 1.2s;
}


.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main{
  font-size: 10px;
}
.btn.primary {
  background-color: #620107;
  color: #ccc;
}

.btn.primary:hover {
  background-color: #910303;
  transform: translateY(-2px);
}

.btn.primary svg {
  transition: transform 0.3s ease;
}

.btn.primary:hover svg {
  transform: translateX(4px);
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid #620107;
  color: #000;
}

.btn.secondary:hover {
  background-color: #620107;
  color: #fff;
}

.stats {
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineThrough {
  to {
    transform: scaleX(1);
  }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 2rem;
    border-radius: 20px;
    padding: 3rem;
  }

  .content-wrapper {
    margin-left: 0;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

@media (max-width: 768px) {
  .hero-content {
    display: none;
  }
}
/* Products */
.product-section {
  width: 100%;
}

.section-title {
  font-family: Lora;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 100;
}

.section-subtitle {
  font-size: 0.6rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

.product-card {
  border: none;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  min-width: 100%;
}

.product-card img:hover{
  cursor: pointer;
}

.product-card h4 {
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.product-card img {
  border: 1px solid #d4a200;
  padding: 6px;
  height: 350px;
  width: 100%;
  object-fit: contain;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("/images/heroban.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
}

.hero-content {
  text-align: left;
  color: #000;
}

.hero-content h1 {
  margin-top: 100px;
  font-size: 3rem;
  font-family: Lora;
  color: #000;
  font-weight: 100;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1rem;
} 

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #ffffff;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0%;
  border: none;
}

/* Optional Floral Illustration */
.hero-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("") no-repeat center/contain;
  opacity: 0.5;
}

.jewelry-card {
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d4a2005d;
  border-radius: 5px;
}

.jewelry-card:hover{
  cursor: pointer;
}

.jewelry-title {
  font-family: Lora;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 100;
  text-align: center;
  padding: 20px;
}

.product-name {
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
}

.about-section {
  background-color: #fdf2ef;
  padding: 80px 0;
}

.about-title {
  font-family: Lora;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 100;
}

.about-text {
  color: #555;
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-button {
  background-color: #1a1a1a;
  color: white;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.about-button:hover {
  background-color: #333;
  color: white;
}

.about-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }

  .jewelry-title{
    font-size: 30px;
  }

  .section-subtitle{
    font-size: 0.5rem;
  }

  .about-title {
    font-size: 2rem;
    font-family: Lora;
  }

  .about-image {
    margin-top: 30px;
  }
}

.assurance-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  font-family: Lora;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
  font-size: 1rem;
  font-weight: 100;
}

.assurance-item {
  text-align: center;
  margin-bottom: 3rem;
}

.assurance-icon {
  font-size: 2.5rem;
  color: #620107;
  margin-bottom: 1.5rem;
}

.assurance-title {
  font-family: serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

.assurance-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .assurance-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

.testimonials-section {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
}

.decorative-leaf {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.2;
}

.leaf-top-left {
  top: 0;
  left: 0;
  transform: rotate(180deg);
}

.leaf-bottom-right {
  bottom: 0;
  right: 0;
}

.section-title {
  font-family: Lora;
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.testimonial-card {
  border: 1px solid #eee;
  padding: 2rem;
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
}

.quote-mark {
  font-family: serif;
  font-size: 4rem;
  color: #f0f0f0;
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-family: Lora;
  color: #333;
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .decorative-leaf {
    width: 100px;
    height: 100px;
  }
}

/* Main Footer Container */
.footer {
  background-color: #ffffff;
  padding: 80px 20px 40px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #f0f0f0;
  position: relative;
}

/* Decorative Elements */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f8f8f8 0%, #e0e0e0 50%, #f8f8f8 100%);
}

/* Footer Content Container */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  position: relative;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

/* Logo Section */
.footer-logo {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-description {
  line-height: 1.8;
  color: #666;
  font-size: 0.95rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "Lora", serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #333;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 0;
}

.footer-links a:hover {
  color: #333;
  padding-left: 5px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -10px;
}

.map-embed iframe {
  width: 100%;
  height: 200px;
  max-width: 400px;
  border: none;
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-button {
    margin-left: 0;
    width: 100%;
  }

  .payment-methods {
    justify-content: center;
  }
}

/* General styles for product detail container */
/* Modal Styling - No Rounded Corners */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dim background */
  z-index: 9999; /* Highest z-index for visibility */
  overflow-y: auto; /* Enable scrolling if modal content overflows */
}

.modal-content {
  position: relative;
  margin: 5% auto;
  background: #fff;
  width: 90%;
  max-width: 700px;
  overflow: hidden; /* Prevent image/content overflow */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Smooth shadow for depth */
  animation: slideIn 0.4s ease-out; /* Smooth slide-in animation */
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.modal-body img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.053);
}


.modal-text {
  width: 100%;
}

.modal-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.modal-text p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #555;
  transition: color 0.3s ease;
  z-index: 99;
  background-color: white;
  border-radius: 50%;
  padding: 0px 12px;
}

.modal-close:hover {
  color: #000; /* Darker color on hover */
  cursor: pointer;
}

/* Add some responsiveness */
@media (min-width: 768px) {
  .modal-body {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }
  .modal-body img {
    width: 50%; /* Adjust image size for desktop */
    max-height: 100%;
  }
  .modal-text {
    width: 50%; /* Text occupies half of the modal */
  }
}

/* Modal animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#shop-main {
  margin-top: 130px;
}

.gap {
  margin-bottom: 15px;
}



.wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}



/*  new arch  */

.showcase {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  height: 100%;
  background-color: #620107
}

.showcase-item {
  position: relative;
  overflow: hidden;
  height: 600px;
  cursor: pointer;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms ease-in;
}

.showcase-item:hover img {
  transform: scale(1.05);
  transition: all 500ms ease-out;
}

/* Arch Design */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.arch {
  width: 300px;
  border-radius: 150px 150px 0 0;
  display: flex;
  flex-direction: column;
  background-color: #fdf2ef;
  align-items: center;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: absolute;
}

.inner-arch {
  position: relative;
  border-radius: 130px 130px 0 0;
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 45px 30px;
  height: 100%;
  text-align: center;
}

.logo {
  margin-bottom: 20px;
}

.logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.tagline {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  color: #000;
  font-weight: 100;
  margin: 1.5rem 0;
  line-height: 1.2;
}

.description {
  font-family: 'Lora', sans-serif;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
  .showcase {
    height: auto;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .showcase-item {
    height: 400px;
  }

  .arch {
    width: 260px;
    padding: 30px 20px;
  }

  .inner-arch {
    padding: 30px 20px;
  }

  .tagline {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .showcase-item {
    height: 300px;
  }

  .arch {
    width: 220px;
    padding: 25px 15px;
  }

  .inner-arch {
    padding: 25px 15px;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.9rem;
  }
}



@media screen and (max-width: 768px) {
  #ob {
    display: none; /* Hides the element on mobile devices */
  }
}
