/*
Theme Name: Matcha
Theme URI: https://ezequias-ana.com
Author: Antigravity
Author URI: https://google.deepmind.com
Description: A custom WordPress theme converted from a React wedding startup landing page.
Version: 1.0.0
Text Domain: matcha
*/

/* =================================================================*********
 *  1. Variables & Reset
 * =================================================================********* */
:root {
  /* Colors */
  --brand-blue: #3B82F6;
  --brand-purple: #8B5CF6;
  --brand-pink: #EC4899;
  --brand-yellow: #F59E0B;
  --brand-light: #F3F4F6;
  --brand-dark: #1F2937;

  --text-main: #1F2937;
  --text-light: #6B7280;
  --bg-body: #F3F4F6;
  --bg-white: #ffffff;

  /* Typography */
  --font-heading: "Fredoka", cursive;
  --font-sans: "Nunito", sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --container-padding: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =================================================================*********
 *  2. Layout Utilities
 * =================================================================********* */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Display */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

/* Flexbox & Grid Alignment */
.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1 1 0%;
}

/* Grid Columns */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Gaps */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

/* Sizing */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-screen {
  width: 100vw;
}

.h-screen {
  height: 100vh;
}

.min-h-screen {
  min-height: 100vh;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-32 {
  width: 8rem;
}

.h-32 {
  height: 8rem;
}

.w-40 {
  width: 10rem;
}

.h-40 {
  height: 10rem;
}

.w-64 {
  width: 16rem;
}

.h-64 {
  height: 16rem;
}

.h-48 {
  height: 12rem;
}

.h-80 {
  height: 20rem;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

/* =================================================================*********
 *  3. Visual Utilities
 * =================================================================********* */

/* Colors */
.bg-white {
  background-color: var(--bg-white);
}

.bg-brand-light {
  background-color: var(--brand-light);
}

.bg-brand-blue {
  background-color: var(--brand-blue);
}

.bg-brand-pink {
  background-color: var(--brand-pink);
}

.bg-brand-yellow {
  background-color: var(--brand-yellow);
}

.bg-brand-dark {
  background-color: var(--brand-dark);
}

.bg-black\/5 {
  background-color: rgba(0, 0, 0, 0.05);
}

.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.20);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.bg-pink-50 {
  background-color: #fdf2f8;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-yellow-100 {
  background-color: #fef9c3;
}

.bg-purple-50 {
  background-color: #faf5ff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.text-white {
  color: #ffffff;
}

.text-brand-dark {
  color: var(--brand-dark);
}

.text-brand-blue {
  color: var(--brand-blue);
}

.text-brand-pink {
  color: var(--brand-pink);
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-green-500 {
  color: #22c55e;
}

.text-red-500 {
  color: #ef4444;
}

.text-pink-500 {
  color: #ec4899;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-yellow-500 {
  color: #eab308;
}

.text-purple-500 {
  color: #a855f7;
}

.text-yellow-800 {
  color: #854d0e;
}

/* Text Sizing & Weight */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Borders & Radius */
.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.border-8 {
  border-width: 8px;
}

.border-dashed {
  border-style: dashed;
}

.border-white {
  border-color: #ffffff;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-800 {
  border-color: #1f2937;
}

.border-transparent {
  border-color: transparent;
}

.border-yellow-400 {
  border-color: #facc15;
}

.border-brand-light {
  border-color: var(--brand-light);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Spacing (Padding/Margin) */
.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}

/* Effects */
.opacity-0 {
  opacity: 0;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-100 {
  opacity: 1;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.mix-blend-multiply {
  mix-blend-mode: multiply;
}

.cursor-pointer {
  cursor: pointer;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.select-all {
  user-select: all;
}

/* Transforms */
.transform {
  transform: translateZ(0);
}

/* Hardware accel trigger */
.rotate-2 {
  transform: rotate(2deg);
}

.rotate-3 {
  transform: rotate(3deg);
}

.-rotate-2 {
  transform: rotate(-2deg);
}

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

/* =================================================================*********
 *  4. Interactive States (Hover/Focus)
 * =================================================================********* */
.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-rotate-2:hover {
  transform: rotate(-2deg);
}

.hover\:rotate-0:hover {
  transform: rotate(0deg);
}

.hover\:rotate-2:hover {
  transform: rotate(2deg);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hover\:bg-brand-blue:hover {
  background-color: var(--brand-blue);
}

.hover\:bg-brand-pink:hover {
  background-color: var(--brand-pink);
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-gray-200:hover {
  background-color: #e5e7eb;
}

.hover\:bg-blue-600:hover {
  background-color: #2563eb;
}

.hover\:bg-pink-600:hover {
  background-color: #db2777;
}

.hover\:bg-blue-50:hover {
  background-color: #eff6ff;
}

.hover\:text-white:hover {
  color: #ffffff;
}

.hover\:text-brand-blue:hover {
  color: var(--brand-blue);
}

.hover\:text-gray-600:hover {
  color: #4b5563;
}

.hover\:border-brand-blue:hover {
  border-color: var(--brand-blue);
}

.hover\:border-brand-pink:hover {
  border-color: var(--brand-pink);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:bg-brand-blue {
  background-color: var(--brand-blue);
}

.group:hover .group-hover\:text-white {
  color: #ffffff;
}

/* Focus */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--brand-pink);
}

/* Simplified ring */

/* =================================================================*********
 *  5. Responsive (Media Queries)
 * =================================================================********* */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:items-center {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:gap-24 {
    gap: 6rem;
  }

  .md\:gap-8 {
    gap: 2rem;
  }

  .md\:items-start {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:pt-32 {
    padding-top: 8rem;
  }
}

/* =================================================================*********
 *  6. Components & Animations
 * =================================================================********* */

/* Buttons (Custom class for better reusability) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: white;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  border-bottom: 4px solid #1e40af;
}

.btn-primary:active {
  transform: translateY(2px);
  border-bottom-width: 0;
}

.btn-primary:hover {
  background-color: #2563eb;
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}