body {
  background-color: #0d0d0d;
  color: white;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid gold;
}

header h1 {
  color: gold;
  margin-bottom: 10px;
}

#search {
  padding: 10px 15px;
  border-radius: 20px;
  border: none;
  width: 250px;
  outline: none;
  font-size: 16px;
}

/* Filter buttons */
.filters {
  text-align: center;
  margin: 20px 0;
}

.filters button {
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filters button:hover,
.filters button.active {
  background: gold;
  color: black;
  box-shadow: 0 0 10px gold;
}

/* Product grid */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

.product-container img {
 

 
}

.product-card {
  background: linear-gradient(145deg, #111, #000);
  border: 1px solid gold;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #f5f5f5;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  animation: fadeInUp 1s ease both;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.product-card h3 {
  margin-top: 15px;
  color: gold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GLOW & TRANSITION EFFECT ===== */
.product-card {
  background: linear-gradient(145deg, #111, #000);
  border: 1px solid gold;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #f5f5f5;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease, box-shadow 0.6s ease;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Smooth fade-in when visible */
.product-card.show {
  animation: fadeInUp 0.8s ease both;
}

/* Golden shimmer glow when reappearing */
.product-card.glow {
  animation: goldenGlow 1.2s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold reflection shimmer */
@keyframes goldenGlow {
  0% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8),
      0 0 50px rgba(212, 175, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }
}

/* Hidden state for smooth fade */
.product-card.hide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Filters buttons and layout remain same */

/* ===== FILTER BUTTON STYLES ===== */
.filters button {
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover + active state */
.filters button:hover,
.filters button.active {
  background: gold;
  color: black;
  box-shadow: 0 0 10px gold;
}

/* ===== GOLDEN PULSE / SHINE EFFECT ===== */
.filters button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.8) 50%,
    rgba(255, 215, 0, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: 0.6s;
}

/* Triggered shine animation */
.filters button.shine::after {
  animation: shineEffect 0.8s ease forwards;
}

/* Keyframes for moving golden streak */
@keyframes shineEffect {
  0% {
    left: -75%;
    opacity: 0.3;
  }
  50% {
    left: 125%;
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 0;
  }
}

/* Subtle pulse (outer glow burst) */
.filters button.pulse {
  animation: pulseGold 0.6s ease-in-out;
}

@keyframes puls






/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0d0d0d;
  padding: 40px 20px;
  border-bottom: 2px solid gold;
  animation: fadeIn 1.5s ease;
}

/* ===== PROFILE SECTION (No Frame) ===== */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent; /* removed solid background */
  border: none; /* removed frame/border */
  box-shadow: none; /* no shadow frame */
  padding: 40px 20px;
  text-align: center;
}

/* ===== PROFILE IMAGE REFLECTION SHIMMER ===== */
.profile-card .profile-pic {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid gold;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: goldPulse 6s ease-in-out infinite;
  overflow: hidden; /* needed for shimmer mask */
}

/* Create shimmer overlay */
.profile-card .profile-pic::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 215, 0, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shimmerOnce 2.5s ease-in-out 1;
}

/* ===== Soft Gold Pulse ===== */
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
}

/* ===== One-Time Shimmer Animation ===== */
@keyframes shimmerOnce {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}






/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: linear-gradient(145deg, #0d0d0d, #000);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.gallery-section h2 {
  color: gold;
  font-size: 2em;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Filters */
.gallery-filters {
  margin-bottom: 30px;
}

.gallery-filters .filter-btn {
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  background: gold;
  color: black;
  box-shadow: 0 0 10px gold;
}

/* Gallery Grid */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border: 2px solid gold;
  border-radius: 10px;
  box-shadow: 0 0 20px gold;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: gold;
  font-size: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.close-lightbox:hover {
  color: white;
}

.hidden {
  display: none;
}








.profile-info h2 {
  color: gold;
  margin-bottom: 10px;
}

.profile-info p {
  color: #ccc;
  max-width: 600px;
  font-size: 1.05em;
  line-height: 1.5em;
}

/* Animations */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
  }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form {
  background: linear-gradient(145deg, #0d0d0d, #000);
  color: white;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border: 1px solid gold;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.contact-form h2 {
  color: gold;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 1px solid gold;
  border-radius: 8px;
  color: white;
  padding: 10px;
  font-size: 16px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 10px gold;
}

.send-btn {
  background: gold;
  color: black;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
}

.send-btn:hover {
  background: #000;
  color: gold;
  box-shadow: 0 0 15px gold;
}

/* Show when active */
.contact-form.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hidden by default */
.hidden {
  display: none;
}

/* Contact button */
.contact-btn {
  margin-top: 10px;
  background: gold;
  color: black;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #000;
  color: gold;
  box-shadow: 0 0 15px gold;
}







/* ===== MODAL CONTACT FORM ===== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Dimmed background */
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease forwards;
}

/* Modal content */
.modal-content {
  background: linear-gradient(145deg, #0d0d0d, #000);
  margin: 10% auto;
  padding: 30px;
  border: 1px solid gold;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  color: white;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  text-align: center;
  transform: translateY(-30px);
  opacity: 0;
  animation: slideDown 0.5s ease forwards;
}

/* Inputs */
.modal-content input,
.modal-content textarea {
  width: 100%;
  background: #111;
  border: 1px solid gold;
  border-radius: 8px;
  color: white;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
  box-shadow: 0 0 10px gold;
}

/* Send button */
.send-btn {
  background: gold;
  color: black;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
}

.send-btn:hover {
  background: #000;
  color: gold;
  box-shadow: 0 0 15px gold;
}

/* Close button */
.close-btn {
  color: gold;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}








/*=== More About Me Buttom==*/


.moreaboutme button {
  position: relative;
  background: transparent;
  color: #f5d628;
  border: 2px solid #10ff57;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4),
              inset 0 0 15px rgba(255, 215, 0, 0.4);
  margin-bottom: 18px;



}

.moreaboutme a {
  font-size: 9px;
  color: #ffffff;
  text-decoration: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Glow effect */
.moreaboutme button:hover {
  color: #000;
  background: #000000;
  box-shadow: 0 0 25px #02b3a7,
              0 0 50px #9bef0b,
              0 0 75px #ffd700;
  transform: scale(1.05);
}

/* Subtle neon pulse animation */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5),
                inset 0 0 10px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgb(15, 252, 244),
                inset 0 0 20px rgba(6, 226, 215, 0.8);
  }
}

.moreaboutme button {
  animation: neonPulse 2.5s infinite;
}










/***===== Inicio buttom=====*/

.inicio button {
  position: relative;
  background: transparent;
  color: #f5d628;
  border: 2px solid #0fea46;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4),
              inset 0 0 15px rgba(255, 215, 0, 0.4);
  margin-bottom: 18px;



}



.inicio a {
  font-size: 9px;
  color: #ffffff;
  text-decoration: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Glow effect */
.inicio button:hover {
  color: #000;
  background: #000000;
  box-shadow: 0 0 25px #ffd700,
              0 0 50px #ffd700,
              0 0 75px #ffd700;
  transform: scale(1.05);
}

/* Subtle neon pulse animation */
@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5),
                inset 0 0 10px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 1),
                inset 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.inicio button {
  animation: neonPulse 2.5s infinite;
}









/* ===== SOCIAL MEDIA ABOVE FOOTER ===== */
.social-footer {
  text-align: center;
  background: linear-gradient(145deg, #0d0d0d, #000);
  padding: 40px 0 20px;
  border-top: 1px solid gold;
  box-shadow: 0 -2px 10px rgba(212, 175, 55, 0.1);
}

.social-footer h3 {
  color: gold;
  margin-bottom: 20px;
  font-size: 1.5em;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* ===== SOCIAL MEDIA ICONS WITH GOLD SHIMMER ===== */
.social-icons a img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px gold);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: glowFadeIn 1s ease forwards, shimmer 6s ease-in-out infinite;
}

/* Glow & pulse on hover */
.social-icons a img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px gold) brightness(1.3);
}

/* Smooth fade-in */
@keyframes glowFadeIn {
  from {
    opacity: 0;
    filter: brightness(0.5);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0);
  }
}

/* ===== GOLD SHIMMER REFLECTION ===== */
@keyframes shimmer {
  0% {
    filter: drop-shadow(0 0 5px gold);
  }
  50% {
    filter: drop-shadow(0 0 15px gold) brightness(1.4);
  }
  100% {
    filter: drop-shadow(0 0 5px gold);
  }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  background: #000;
  color: gold;
  font-size: 0.9em;
  padding: 15px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  letter-spacing: 0.5px;
  box-shadow: 0 -1px 10px rgba(212, 175, 55, 0.2);
}
