/* 
 * GB Nani Beauty - Main Stylesheet
 * Custom styles for the GB Nani Beauty website
 */

/* Base Styles */
:root {
  --primary-color: #d7b38f; /* Gold/bronze accent color */
  --primary-light: #e5c6a6; /* Lighter gold for hover effects */
  --text-color: #121212; /* Near black text */
  --bg-color: #ffffff; /* White background */
  --gray-light: #f9f9f9; /* Light gray for sections */
  --gray-medium: #e5e5e5; /* Medium gray */
  --gray-dark: #333333; /* Dark text on light backgrounds */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Quicksand", "Montserrat", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 300;
  background-color: var(--bg-color);
}

.font-serif {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  letter-spacing: 0.5px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  line-height: 1.2;
  letter-spacing: 1px;
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 500;
}

/* Estilos para elementos secundarios más elegantes */
p.secondary,
.secondary {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}

/* Elementos de acento con estilo cursivo y lujoso */
.accent,
.accent-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

/* Nuevas clases de tipografía premium */
.title-luxury {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--text-color);
}

.accent-text {
  font-style: italic;
  font-weight: 400;
  color: var(--primary-color);
}

.body-elegant {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: var(--text-color);
}

.highlight-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: var(--text-color);
}

.signature-text {
  font-family: "BonVivant", "Playfair Display", cursive;
  font-weight: normal;
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: rgba(215, 179, 143, 0.9);
}

/* Header & Navigation */
header {
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Hero Section */
#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Portfolio Section */
.look-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.look-item img {
  transition: transform 0.5s ease;
}

.look-item:hover img {
  transform: scale(1.05);
}

/* Product Sidebar */
#product-sidebar {
  transition: width 0.3s ease-in-out;
}

#product-sidebar.open {
  width: 100%;
}

@media (min-width: 640px) {
  #product-sidebar.open {
    width: 400px;
  }
}

/* Form Elements */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(215, 179, 143, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  #contact {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  a::after {
    content: " (" attr(href) ")";
  }
}
