/*
Theme Name: Market Stationery & Gift
Theme URI: https://marketshop.pe
Author: Market Shop
Author URI: https://marketshop.pe
Description: Theme personalizado para Market Stationery & Gift – e-commerce de papelería fina y accesorios de escritorio. Construido con Tailwind CSS y WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: marketshop
*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Syncopate:wght@400;700&display=swap");

@import "tailwindcss";

@theme {
  --color-brand-cream: #fbf4e7;
  --color-brand-orange: #e8512e;
  --color-brand-coral: #ee8567;
  --color-brand-pink: #f2a1c6;
  --color-brand-light-pink: #f8d7e8;
  --color-brand-lavender: #ccb8d9;
  --color-brand-yellow: #f8ad19;
  --color-brand-black: #1a1a1a;

  --font-display: "Syncopate", sans-serif;
  --font-sans: "Raleway", sans-serif;
  --font-serif: "Playfair Display", serif;
}

@layer base {
  html,
  body {
    overflow-x: clip;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-display);
    color: var(--color-brand-orange);
  }

  body {
    color: var(--color-brand-orange);
    font-family: var(--font-sans);
    width: 100%;
    height: 100%;
  }
}

@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.hero-slide:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-slides-container {
  position: relative;
  min-height: 700px;
}

@media (min-width: 768px) {
  .hero-slides-container {
    min-height: 900px;
  }
}

@media (min-width: 1024px) {
  .hero-slides-container {
    min-height: 600px;
  }
}
