
:root {
  --cream: #F8F6F2;
  --beige: #e8e3dc;
  --text: #1a1a1a;
  --accent: #0FAED2;
  --soft-gray: #777;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h3 {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: none;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;

  background: rgba(248,246,242,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all 0.4s ease;
}

/* SCROLL STATE */
.navbar.scrolled {
  padding: 14px 60px;
  background: rgba(248,246,242,0.9);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* LOGO */
.logo img {
  height: 100px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV LINKS */
.nav-menu {
  display: block;
}

/*.nav-menu.active {
  opacity: 1;
}*/

.nav-menu ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
}


/* PREMIUM UNDERLINE */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* SHOP BUTTON */
.btn-shop {
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-shop:hover {
  background: var(--accent);
  color: white;
}

.btn-shop::after {
  display: none;
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--accent);
}

/* NAV DEFAULT */
.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ddd;
  z-index: -1;
}

/* HELLO */
.hello {
    display: flex;
    position: relative;
    background-color: var(--beige);
    padding: 100px 20px;
    margin: auto;
    text-align: center;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.hello p {
    color: var(--text);
    font-size: 15px;
    text-align: center;
    max-width: 800px;
    padding: 50px 20px;
}

/**************** Gifts for All Section *****************/
#gifts {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    z-index: 2; 
    background-color: #fffef9;
}

.gifts-section {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9); /* Light background for contrast */
    padding: 50px 20px;
    text-align: center;
}

.gifts-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.gifts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
}

.gifts-grid div {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 300px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.gifts-grid div:hover {
    transform: translateY(-5px);
}

.gifts-grid img {
    border-radius: 8px;
}

.gifts-grid .cta {
    text-decoration: none;
    background-color:#40D1F2;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px;
    box-shadow: 0px 0px 10px rgb(7 9 5 / 5%);
    border-radius: 0px;
    color: #fffef9;
    transition: linear 1s;
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    padding: 15px;
}


.gifts-grid .cta:hover {
    background-color: #f8e100;
    color: #40D1F2;
}
    
 .gifts-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep this line */
    background-size: cover;
    background-position: center;
 } 
 


.img-box {
  height: 350px;
  background: var(--beige);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-box::after {
  content: "View";
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  color: white;
  transition: 0.3s;
}

.img-box:hover::after {
  opacity: 1;
}

.img-box:hover {
  transform: scale(1.02);
  transition: 0.4s;
}

/* SECTION TITLE */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* CONTENT */
.content {
  padding: 100px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.content p {
  color: var(--soft-gray);
  margin-bottom: 20px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.feature {
  padding: 100px;
  background: white;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  text-align: center;
  transition: 0.3s;
}

.feature:hover {
  background: var(--beige);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px;
}

.cta button {
  background: transparent;
  border: 1px solid var(--accent);
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.cta button:hover {
  background: var(--accent);
  color: white;
}

/* NEWSLETTER */
.newsletter {
  text-align: center;
  padding: 100px 20px;
}

.newsletter h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.newsletter input {
  padding: 12px;
  width: 260px;
  border: 1px solid #ccc;
  border-radius: 25px;
  margin-right: 10px;
}

.newsletter button {
  padding: 12px 20px;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 25px;
}

/* FOOTER */
footer {
  background: rgba(248,246,242,0.6);
  color: #777;
  padding: 60px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-top h4 {
  margin-bottom: 10px;
  font-weight: 400;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}


.socials a {
    font-size: 2em;
    letter-spacing: 3px;
    padding: 10px;
    text-decoration: none;
    color: var(--accent);

}


/******** SHOP SECTION ********/
/* SHOP SECTION */
.shop {
  padding: 120px 40px;
  text-align: center;
  background: #fffef9;
}

.shop-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 60px 0px;
  color: #777;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-right: 70px;
  padding-left: 70px;
}

/* CARD */
.product-card {
  text-align: left;
  cursor: pointer;
}

/* IMAGE WRAP */
.product-image {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}

/* IMAGE */
.product-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.05);
}

/* QUICK SHOP BUTTON */
.quickshop {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  background: rgba(255,255,255,0.95);
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;

  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.quickshop a{
   color: var(--accent);
   text-decoration: none;
}

/* SHOW BUTTON ON HOVER */
.product-card:hover .quickshop {
  transform: translateY(0);
}

/* TEXT */
.product-card h3 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
}

.price {
  color: #777;
  font-size: 14px;
}

/* ZOOM CONTAINER */
.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

/* IMAGE */
.zoom-container img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* ZOOM EFFECT */
.zoom-container:hover img {
  transform: scale(1.6); /* adjust zoom strength */
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 60px 0;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-top: 60px;
  color: #777;
}

.page-btn {
  border: 1px solid #ddd;
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.page-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* RESPONSIVE */

@media(min-width: 769px) {
  .nav-menu {
    max-height: none !important;
    opacity: 1 !important;
  }
}

@media(max-width: 768px) {
  .navbar {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 60px 20px;
  }
  
  .menu-toggle {
    display: block;
    font-size: 26px;
    z-index: 1100;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: rgba(248,246,242,0.98);
    backdrop-filter: blur(18px);

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }

  .nav-menu li {
    margin: 12px 0;
  }
  
  /* FADE-IN EFFECT*/
  .nav-menu ul li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }

  .nav-menu.active ul li {
    opacity: 1;
    transform: translateY(0);
  }
}

