@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

.font-playfair { font-family: 'Playfair Display', serif; }

.font-inter { font-family: 'Inter', sans-serif; }

.hero-gradient {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23000" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.card-hover:hover::before {
    left: 100%;
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #374151 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #242a34 0%, #4b5563 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.text-shimmer {
    background: linear-gradient(45deg, #1f2937, #6b7280, #1f2937);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {

    background: linear-gradient(135deg, #feb46feb 0%, #663200d6 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 20px #b992ac; }
    to { box-shadow: 0 0 30px #eaacd3; }
}

.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
}

.stats-counter {
    font-variant-numeric: tabular-nums;
}

.text-center img {
    max-width: 100%;

}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  height: 75vh;
  padding: 2rem;
  color: var(--secondary-color);
}

.hero h1 {
  font-size: 2.5rem;
  max-width: 500px;
}

.hero .hero-btn {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background-color: #2c2c2c;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

.section {
  padding: 2rem;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: 'Playfair Display', 'Poppins';
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.product {
  text-align: center;
}
.product img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 6px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  margin-top: 2rem;
  gap: 1rem;
}
.features div {
  padding: 1rem;
  filter: opacity(0.8);
}
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.about img {
  max-width: 100%;
  border-radius: 6px;
  flex: 1;
}
.about-text {
  flex: 1;
}
.home-about a,
.home-about a:visited{

  color: #ac6a00;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
    padding: 3rem;
    border-radius: 6px;
    box-shadow: 1px 3px 10px rgba(100, 100, 100, 0.2);
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  padding: 5rem;
}

.font-playfair{
    font-size: 2rem;

    color: #4e2000;
    margin-bottom: 0.6rem;
    text-align: center;
  }
.text-gray-300{
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-family: "Playfair Display", Poppins;
}
.ft-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 1rem;
}
.ft-1{
    justify-items: center;
  }

.ft-contact-list li {
    justify-items: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .text-hero {
        font-size: 3.75rem;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
  .features {
    text-align: start;
    margin-top: 2rem;
    gap: 0px;
  }
  .features div {
      padding: 1rem 0rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-self: center;
      font-size: 12px;
    }
  .products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .testimonial {
    padding: 2rem;
  }
  .ft-1{
    grid-column: 1/-1;
  }
  .ft-4{
    grid-column: 3/5;
  }
}
@media(max-width:480px){
  .hero h1 {
    font-size: 2rem;
    max-width: 500px;
  }
  .testimonial {
    padding: 1rem;
  }

  .product img {
  width: 100%;
  height: 200px;
  }

  .features {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    text-align: start;
    margin-top: 2rem;
    gap: 0px;
  }
  .section h2 {
  font-size: 1.4rem;
}
  .bg-gray-900{
    padding: 30px;
  }
  .nl-section{
    max-width: 400px;
  }
  .font-playfair{
    font-size: 2rem;
  }
  .text-gray-300{
    font-size: 1rem;
  }
  .about-image img{
    height: 20rem;
  }
  .ft-2{
    grid-column: 1/3;
  }
  .ft-3{
    grid-column: 3/5;
  }
  .ft-4{
    grid-column: 1/5;
  }
}

body{
    background:#fafafa;
}

.container-x{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
}

.section{
    padding:70px 0;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .9s ease;
}

.hero-slide.active{
    opacity:1;
}

.card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.25s;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
}

@media(min-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.04);
}

.shine-text{
    position:relative;
    color:white;
    font-weight:600;

    background: linear-gradient(
        110deg,
        #ffffff 40%,
        #ffe7b0 48%,
        #ffffff 55%
    );

    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineMove 4s linear infinite;
}

@keyframes shineMove{
    to{
        background-position:200% center;
    }
}
