/* Custom Styles for Carmen Boutique */

:root {
  --color-gold: #C6A75E;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}


.magazine .header-transparent a {
    color: #C6A75E;
}

.la-boutique .header-transparent a {
    color: #C6A75E;
}

.contatti .header-transparent a {
    color: #C6A75E;
}

body {
  font-family: var(--font-sans);
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

/* Base Utility Classes */
.text-gold { color: var(--color-gold); }
.bg-gold { background-color: var(--color-gold); }
.border-gold { border-color: var(--color-gold); }

/* Custom Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effects */
.hover-zoom-img {
  transition: transform 0.5s ease;
}
.group:hover .hover-zoom-img {
  transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #ccc; 
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold); 
}

/* Mega Menu / Header */
.header-transparent {
    background: transparent;
    transition: background 0.3s, padding 0.3s;
}
.header-scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Loader */
#pf-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

@media (max-width: 768px) {
  .object-cover {
      object-fit: cover;
      object-position: left;
  }
}