* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    background-color: #f9f9f9;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: bold;
    color: #4f38d6;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #000;
}

.nav-link:hover {
    color: #4f38d6;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    margin: 4px 0;
}

/* IMAGE SECTION */
.image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
    cursor: pointer;
}

/* 🔥 HOVER IMAGE CHANGE */
.main-image:hover {
    content: url("./4bffafd74b6cebef96dd6764aafe8c1b--hand-jewelry-beautiful-hands.jpg" );
}

/* SHOP SECTION */
#shop {
    height: 100vh;
    text-align: center;
    padding-top: 50px;
    color: #276287;
    font-size: 28px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        background: #fff;
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

/*card style*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
}

.jewelry-section {
  padding: 60px 80px;
}

.jewelry-section h2 {
  font-size: 28px;
  color: #1f2a44;
  margin-bottom: 40px;
  font-weight: 600;
}

.card-container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.card {
  width: 220px;
  text-align: center;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #f3f3f3;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card p {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #1f2a44;
}

.card:hover img {
  transform: scale(1.05);
}

#button {
  
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #231670;
    color: #fff;
}







/*section 101*/



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
}

.hero {
  display: flex;
  height: 100vh;
  color: rgb(255, 255, 255);
  background-color: #2c189b;
}

.hero-text {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-text button {
  width: 150px;
  padding: 12px;
  background-color: white;
  color: #0b2d5c;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.hero-image {
  flex: 1;
  cursor: pointer;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-text {
    padding: 40px;
  }
}
/* End of section 101 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    gap: 20px;
}

body {
    background: #fff;
    font-family: Arial, sans-serif;
}

.gallery {
    display: flex;
    width: 100%;
    height: 100vh;
}

.img-box {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover effect */
.img-box:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        height: auto;
    }

    .img-box {
        height: 300px;
    }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {

}

.subscribe-section {
  padding: 60px 20px;
background-color: #a5d3e3;
}

.subscribe-card {
  max-width: 1000px;
  margin: auto;
  display: flex;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}

/* Image */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.content-box {
  flex: 1;
  padding: 60px 40px;
  background: #f7f7f7;
}

.content-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1a2b49;
}

.content-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.content-box button {
  background: #1a2b49;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.content-box button:hover {
  background: #0f1c33;
}

/* Responsive */
@media (max-width: 768px) {
  .subscribe-card {
    flex-direction: column;
  }

  .content-box {
    text-align: center;
  }
}













* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background-color: #bfe6f3;
    padding: 40px 60px;
    font-family: Arial, sans-serif;
    color: #555;
}

/* Top section */
.footer-top {
    display: flex;
    gap: 120px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.footer-col p {
    margin-bottom: 12px;
    cursor: pointer;
}

/* Line */
.footer hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #a5d3e3;
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons span {
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}
