/* 
  Design System - Pastelaria Com Pimenta 
  Aesthetics: Exquisite, Premium, Minimalist but Rich.
*/

:root {
  --primary-pepper: #8B4513; /* Saddle Brown */
  --accent-luxury: #D4A373;  /* Golden Brown */
  --cream-white: #120E0B;    /* Deep Dark Brown Background */
  --charcoal: #EAE0D5;       /* Light Cream Text */
  --light-gray: #2A2420;     /* Deep Coffee Border */
  --dark-overlay: rgba(18, 14, 11, 0.7); /* Adjusted for dark theme */
}

/* Typography Overrides */
h1, h2, h3, h4, .font-outfit {
  font-family: 'Outfit', sans-serif;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream-white);
  line-height: 1.6;
}

/* Base Styles */
section {
  position: relative;
  overflow: hidden;
}

/* Fix para altura de tela dinâmica (Mobile/Desktop) */
.h-full-viewport {
  min-height: 100vh;
  min-height: 100dvh;
}

.container-custom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media (max-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

/* Transitions & Micro-animations */
.transition-luxury {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-scale {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* Premium Buttons Styling - Standardized System */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* Primary / Filled - The Luxury Brand Color */
.btn-premium-filled, .btn-primary {
  background-color: var(--accent-luxury);
  color: var(--cream-white) !important;
  border-color: var(--accent-luxury);
}

.btn-premium-filled:hover, .btn-primary:hover {
  background-color: var(--primary-pepper);
  border-color: var(--primary-pepper);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(139, 69, 19, 0.5);
}

/* Outline - Light borders, sophisticated feel */
.btn-premium-outline, .btn-outline {
  background-color: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal) !important;
}

.btn-premium-outline:hover, .btn-outline:hover {
  background-color: var(--charcoal);
  color: var(--cream-white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}

/* Ghost - Subtle actions */
.btn-premium-ghost, .btn-ghost {
  background-color: transparent;
  color: var(--charcoal);
  opacity: 0.7;
}

.btn-premium-ghost:hover, .btn-ghost:hover {
  background-color: var(--light-gray);
  color: var(--accent-luxury);
  opacity: 1;
  transform: translateX(5px);
}

/* Legacy support for btn-premium base (defaults to outline behavior but better) */
.btn-premium:not(.btn-premium-filled):not(.btn-premium-outline):not(.btn-premium-ghost):not(.btn-primary):not(.btn-outline):not(.btn-ghost) {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-premium:not(.btn-premium-filled):not(.btn-premium-outline):not(.btn-premium-ghost):not(.btn-primary):not(.btn-outline):not(.btn-ghost):hover {
  background-color: var(--charcoal);
  color: var(--cream-white);
}

/* Glassmorphism effects */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Category pills in intro */
.category-link {
  color: var(--charcoal);
  opacity: 0.7;
  transition: opacity 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
}

.category-link:hover {
  opacity: 1;
  border-bottom: 2px solid var(--primary-pepper);
}

/* Image styling */
.img-reveal {
  overflow: hidden;
}

.img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-reveal:hover img {
  transform: scale(1.08);
}

#wpadminbar{
	display:hidden !important;
}
