
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Inter", Arial, sans-serif;
  background: rgba(177, 174, 166, 0.8);
  color: #111;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.logo,
.logo:hover {
    text-decoration: none;
}


.section-title {
  font-size: clamp(1rem, 2vw + 1.2rem, 2.6rem); 
  font-weight: 700;
  text-align: center;
  margin: 100px 0 40px;

  /* Animation setup */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s; 
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


:root {
    --accent-color: #007bff;
}

.glass {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.navbar {
  position: fixed;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 999;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links a {
  text-decoration: none;
  margin-left: 30px;
  color: #111;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

.nav-pulse:hover {
  animation: pulseAnim 0.4s ease-in-out forwards;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.nav-pulse {
  display: inline-block;
  transition: transform 0.2s ease-in-out; 
}


.nav-links a,
.logo,
.hamburger {
  transition: all 0.2s ease;
  color: #fff;
  text-shadow: 0 0 2px #a79909, 0 0 4px #a79909;
}

.neon-hover {
  /* optional static glow */
  text-shadow: 0 0 5px #a79909, 0 0 10px #a79909, 0 0 20px #a79909;
}


.mobile-menu a:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}


.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(18px);
  padding-top: 120px;
  z-index: 998;
  transition: right .6s cubic-bezier(.16,1,.3,1);
}

.mobile-menu a {
  display: block;
  padding: 18px 30px;
  text-decoration: none;
  color: #111;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu.open a {
  animation: mobileFade .7s ease forwards;
}

@keyframes mobileFade {
  from { opacity:0; transform: translateX(25px); }
  to { opacity:1; transform: translateX(0); }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 75%;            
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0;           
    background: none;     
    backdrop-filter: none;
    border: none;
    box-shadow: none;

    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h2,
.hero-title {
    display: block;
    font-size: clamp(1.1rem, 4vw, 2.4rem); 
    font-weight: 400;        /* bold */
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    animation: fadeDown 1s ease forwards, heartbeat 20s ease-in-out infinite;
}

/* Tagline only, bold */
.hero-overlay p,
.hero-tagline {
    font-size: 1.2rem;
    font-weight: 700;     /* bold */
    margin: 0;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero-overlay .hero-button {
    padding: 10px 26px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.25); /* glass */
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.hero-overlay .hero-button:hover {
    animation: pulseAnim 0.4s ease-in-out forwards;
}

@media (max-width: 900px) {
    .hero-overlay {
        top: 72%;
    }
    .hero-overlay h2 {
        font-size: 1.8rem;
    }
    .hero-overlay p.hero-tagline {
        font-size: 1rem;
    }
    .hero-overlay .hero-button {
        font-size: 0.95rem;
        padding: 8px 22px;
    }
}

@media (max-width: 600px) {
    .hero-overlay {
        top: 78%;
        width: calc(100% - 20px); 
    }
    .hero-overlay h2 {
        font-size: 1.4rem;
    }
    .hero-overlay p.hero-tagline {
        font-size: 0.80rem;
    }
    .hero-overlay .hero-button {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

.hero-title {
    display: inline-block;
    color: white;
    font-size: clamp(2.5rem, 5vw, 5rem); 
    text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 4px #fff; 
    animation: subtleHeartbeat 20s ease-in-out infinite; 
}

    }
}

.about-section {
  margin-top: -80px;
  padding: 120px 7%;
}

.about-container {
  padding: 60px;
  border-radius: 25px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0,0,0,.1);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease .4s forwards;
}

.about-container p {
  font-size: 1.25rem;
  margin-bottom: 18px;
  line-height: 1.7em;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 45px;
  padding: 70px 6%;
  margin-top: 40px;
}

.product-card {
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  transition: all .3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.product-slider img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* Thumbnails */
.thumb-row {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 10px;
}

.thumb-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.8;
  cursor: pointer;
}

.thumb-row img:hover {
  opacity: 1;
  transform: scale(1.1);
}



.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}


.accordion {
  background: rgba(210, 210, 210, 0.8);
  border: none;
  padding: 12px;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.panel {
  display: none;
  padding: 0 5px 10px;
  font-size: .95rem;
  text-align: left;
}

.add-btn {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  background: #111;
  color: white;
  border-radius: 12px;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
}

.add-btn:hover {
  animation: pulseAnim .4s ease-in-out forwards;
}


.img-modal {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,.85);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.img-modal img {
  max-width:80%;
  max-height:80%;
  border-radius:12px;
}

.close-modal {
  position:absolute;
  top:30px;
  right:40px;
  font-size:3rem;
  color:white;
  cursor:pointer;
}

.cart-bubble {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background: #111;
  color: white;
  padding: 14px 18px;
  border-radius: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 999;
  box-shadow: 
      0 4px 20px rgba(0,0,0,.25),
      0 0 8px #00bfff33, 
      0 0 16px #00bfff22;
  transition: transform 0.2s ease, box-shadow 0.2s ease;


  animation: floatBubble 3s ease-in-out infinite;
}

.cart-bubble:hover {
  transform: scale(1.1);
  box-shadow: 
      0 6px 25px rgba(0,0,0,.35),
      0 0 12px #00bfff66,
      0 0 22px #00bfff44;
}

#cartCount {
  background: crimson;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
}

@keyframes floatBubble {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.cart-drawer {
  position: fixed;
  right: -100%;
  top:0;
  width: 380px;
  height: 100%;
  background: white;
  box-shadow: -6px 0 20px rgba(0,0,0,.2);
  z-index: 9999;
  padding: 30px;
  transition: right .6s cubic-bezier(.16,1,.3,1);
}

.cart-header {
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 20px;
}

.close-cart {
  font-size: 2rem;
  cursor:pointer;
}

#cartItems {
  list-style:none;
  margin-bottom: 40px;
}

.go-checkout {
  display:block;
  background:#111;
  color:white;
  padding:14px;
  border-radius:12px;
  text-align:center;
  text-decoration:none;
}


.contact-wrapper {
  padding: 50px 7% 120px;
}

.contact-block {
  padding: 30px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}

.contact-block h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.whatsapp-button {
  display: inline-block;
  background: #25d366;
  padding: 12px 26px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}


.footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;


    padding: 5px 5px;
    text-align: center;
    font-size: 0.95rem;
    color: #fff;

    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);

  
    border: 1px solid rgba(255, 255, 255, 0.22);

    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(180, 180, 180, 0.15); 

    opacity: 0.95;
    z-index: 999;
}


.footer .heart {
    color: #ff6b6b;
    font-size: 1.2em;
    margin: 0 4px;
    display: inline-block;
    animation: heartbeat 1.4s ease-in-out infinite;
}

@keyframes heartbeat {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.25); }
  35%  { transform: scale(1); }
  50%  { transform: scale(1.25); } 
  70%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.footer .agency {
    color:rgba(104,79,37,1.00);
    font-weight: 600;
    text-decoration: none;
    text-shadow: 0 0 2px #a2996a, 0 0 4px #a2996a;
    display: inline-block;
    transition: transform 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
}

.footer .agency:hover {
    transform: scale(1.15);
    text-shadow:
        0 0 6px #dbb356,
        0 0 14px #dbb356,
        0 0 22px #dbb356;
}


.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}


@keyframes fadeUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeDown {
  to {
    opacity:1;
    transform:translateY(0);
  }
}


@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display:block; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3.4rem; }
  .hero-button { font-size: 1rem; }
}
