* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #fffaf3;
  color: #7b2b2b;
}

/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  padding: 80px 0%;
  overflow: hidden;
}

/* PATTERNS */
.pattern {
  position: absolute;
  max-width: 220px;
  z-index: 0;
}

.pattern-left {
  top: 0;
  left: 0;
}

.pattern-top-right {
  top: 0;
  right: 0;
}

.pattern-bottom-right {
  bottom: 40px;
  right: 40px;
}

/* MAIN GRID */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* LEFT IMAGE */
.hero-left img {
  width: 100%;
  border-radius: 20px;
}

/* CENTER CONTENT */
.hero-center {
  text-align: center;
}

.hero-logo {
  width: 90px;
  margin-bottom: 12px;
}

.hero-center h2 {
  font-size: 22px;
  letter-spacing: 1px;
}

.location {
  font-size: 12px;
  margin-bottom: 16px;
}

.category-bar {
  display: inline-flex;
  gap: 16px;
  background: #6f2a2a;
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 16px;
  line-height: 1.6;
  color: #a34747;
}

/* RIGHT IMAGE */
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 280px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right img {
    border-radius: 30px;
  }

  .pattern {
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .hero-text {
    font-size: 14px;
  }

  .category-bar {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* CONTENT + IMAGE SECTION */
.info-section {
  padding: 80px 5%;
  background: #fffaf3;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.info-content h3 {
  font-size: 32px;
  font-family: "Georgia", serif;
  margin-bottom: 16px;
  color: #7b2b2b;
}

.info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #a34747;
  max-width: 500px;
}

/* RIGHT IMAGE */
.info-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-content p {
    margin: auto;
  }
}


/* SECTION 3 : ABOUT */
.about-section {
  background: #8b0f14;
  padding: 100px 6%;
  color: #f6e9dc;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  font-family: "Georgia", serif;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f2d8c9;
}

/* RIGHT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 0 0 0 260px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    border-radius: 24px;
    margin-top: 40px;
  }
}


/* OUR PROMISE SECTION */
.promise-section {
  background: #f5f5f5 url("../images/screenshot-4.jpg") no-repeat center;
  background-size: cover;
  padding: 100px 5%;
  text-align: center;
}

.promise-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.promise-title {
  font-size: 42px;
  color: #7b2b2b;
  margin-bottom: 60px;
  font-family: "Georgia", serif;
}

/* GRID */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.promise-item img {
  width: 48px;
  margin-bottom: 20px;
}

.promise-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #7b2b2b;
  position: relative;
  padding-bottom: 16px;
}

.promise-item p::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #7b2b2b;
  display: block;
  margin: 14px auto 0;
}

/* CTA */
.promise-cta p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #7b2b2b;
}

.promise-btn {
  display: inline-block;
  background: #7b2b2b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.promise-btn:hover {
  background: #5c1f1f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-title {
    font-size: 32px;
  }
}


/* HARAM SECTION */
.haram-section {
  background: #fffaf3;
  padding: 90px 5%;
}

.haram-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.haram-title {
  font-size: 40px;
  color: #7b2b2b;
  font-family: "Georgia", serif;
  margin-bottom: 50px;
}

/* GRID */
.haram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.haram-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.haram-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .haram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .haram-title {
    font-size: 32px;
    text-align: center;
  }

  .haram-grid {
    grid-template-columns: 1fr;
  }
}



/* BANGLES SECTION */
.bangles-section {
  background: #fffaf3;
  padding: 90px 5%;
}

.bangles-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.bangles-title {
  font-size: 40px;
  color: #7b2b2b;
  font-family: "Georgia", serif;
  margin-bottom: 50px;
}

/* GRID */
.bangles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bangles-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.bangles-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bangles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .bangles-title {
    font-size: 32px;
    text-align: center;
  }

  .bangles-grid {
    grid-template-columns: 1fr;
  }
}


/* CHAINS SECTION */
.chains-section {
  background-color: #8b0f14; /* deep red */
  padding: 80px 6%;
}

.chains-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* TITLE - LEFT ALIGNED */
.chains-title {
  color: #ffffff;
  font-size: 42px;
  font-family: "Georgia", serif;
  margin-bottom: 50px;
  text-align: left;
}

/* IMAGE GRID */
.chains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.chains-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.chains-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .chains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .chains-grid {
    grid-template-columns: 1fr;
  }

  .chains-title {
    text-align: center;
  }
}


/* DOLLARS SECTION */
.dollars-section {
  background-color: #8b0f14; /* deep red */
  padding: 80px 6%;
}

.dollars-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* TITLE */
.dollars-title {
  color: #ffffff;
  font-size: 42px;
  font-family: "Georgia", serif;
  margin-bottom: 50px;
  text-align: left;
}

/* GRID */
.dollars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dollars-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dollars-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dollars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dollars-grid {
    grid-template-columns: 1fr;
  }

  .dollars-title {
    text-align: center;
  }
}


/* DIAMOND SECTION */
.diamond-section {
  background-color: #8b0f14; /* deep maroon red */
  padding: 80px 6%;
}

.diamond-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* TITLE */
.diamond-title {
  color: #ffffff;
  font-size: 42px;
  font-family: "Georgia", serif;
  margin-bottom: 50px;
  text-align: left;
}

/* GRID */
.diamond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.diamond-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.diamond-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .diamond-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .diamond-grid {
    grid-template-columns: 1fr;
  }

  .diamond-title {
    text-align: center;
  }
}


/* LIGHT BACKGROUND SECTIONS */
.light-jewellery-section {
  background-color: #fbf6ef; /* cream background */
  padding: 80px 6%;
}

.light-jewellery-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* TITLES */
.light-title {
  color: #7a1a1a;
  font-size: 40px;
  font-family: "Georgia", serif;
  margin: 60px 0 40px;
  text-align: left;
}

/* GRID */
.light-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.light-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.light-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .light-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .light-grid {
    grid-template-columns: 1fr;
  }

  .light-title {
    text-align: center;
  }
}

.contact-section {
  background-color: #8b0d12;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
  font-family: "Georgia", serif;
}

.contact-image {
  max-width: 900px;
  margin: 0 auto 40px;
  overflow: hidden;
  border-top-left-radius: 450px;
  border-top-right-radius: 450px;
}

.contact-image img {
  width: 100%;
  display: block;
}

.contact-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-decoration: underline;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.contact-item p {
  font-size: 15px;
  line-height: 1.6;
}

.contact-item a {
  color: #fff;
  text-decoration: underline;
}

.contact-footer {
  font-size: 13px;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-title {
    font-size: 28px;
  }
}



/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: #fffaf3;
  color: #7b2b2b;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 80px 6%;
}

h2, h3 {
  margin-bottom: 20px;
}

/* =========================
   HERO SECTION
========================= */
.hero-wrapper {
  position: relative;
  overflow: hidden;
}

.pattern {
  position: absolute;
  max-width: 220px;
  z-index: 0;
}

.pattern-left {
  top: 0;
  left: 0;
}

.pattern-top-right {
  top: 0;
  right: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left img {
  border-radius: 20px;
}

.hero-center {
  text-align: center;
}

.hero-logo {
  width: 90px;
  margin-bottom: 12px;
}

.location {
  font-size: 12px;
  margin-bottom: 14px;
}

.category-bar {
  display: inline-flex;
  gap: 14px;
  padding: 8px 16px;
  background: #6f2a2a;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-text {
  color: #a34747;
}

.hero-right img {
  border-radius: 0 0 0 280px;
}

/* =========================
   CONTENT + IMAGE
========================= */
.info-container,
.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.info-image img,
.about-image img {
  border-radius: 20px;
}

/* =========================
   PROMISE SECTION
========================= */
.promise-section {
  background: #fff;
  text-align: center;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.promise-item img {
  width: 60px;
  margin: 0 auto 10px;
}

.promise-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 28px;
  background: #6f2a2a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* =========================
   COLLECTION GRIDS
========================= */
.haram-grid,
.bangles-grid,
.chains-grid,
.dollars-grid,
.diamond-grid,
.light-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.haram-grid img,
.bangles-grid img,
.chains-grid img,
.dollars-grid img,
.diamond-grid img,
.light-grid img {
  border-radius: 16px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: #f8f1ea;
  text-align: center;
}

.contact-image img {
  max-width: 420px;
  margin: 0 auto 30px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-item a {
  color: #7b2b2b;
  text-decoration: none;
}

/* =========================
   FOOTER TEXT
========================= */
.contact-footer {
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablets */
@media (max-width: 992px) {
  section {
    padding: 60px 5%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right img {
    border-radius: 30px;
  }

  .info-container,
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  section {
    padding: 50px 4%;
  }

  h2 {
    font-size: 22px;
  }

  .hero-logo {
    width: 70px;
  }

  .category-bar {
    font-size: 12px;
  }

  .promise-grid {
    gap: 20px;
  }

  .contact-image img {
    max-width: 100%;
  }
}


.main-header {
  background: #7b0d14; /* maroon */
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 100px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.header-nav ul li a::after {
  content: '';
  width: 0;
  height: 2px;
  background: gold;
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.header-nav ul li a:hover::after {
  width: 100%;
}

