/* Anna Morellini - Custom Styles - Bag Manufacturer */

/* ===== FONTS ===== */
body {
    font-family: 'Open Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
.heading-xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .heading-xl {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .heading-xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.heading-lg {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .heading-lg {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

/* Cognac/leather accent gradient text */
.gradient-text {
    background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #92400e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO & CTA GRADIENTS ===== */
.hero-gradient {
    background: linear-gradient(135deg, #fafaf9 0%, #fef3e2 50%, #fef7ed 100%);
}

.cta-gradient {
    background: linear-gradient(135deg, #292524 0%, #1c1917 100%);
}

/* ===== SECTION PADDING ===== */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* ===== CARD HOVER ===== */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

/* ===== LINE CLAMP ===== */
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* ===== HEADER SCROLL ===== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.open {
    max-height: 20rem;
}

/* ===== FAQ DETAILS ===== */
.faq-details summary::-webkit-details-marker {
    display: none;
}

.faq-details[open] .details-chevron {
    transform: rotate(180deg);
}

/* ===== GALLERY SCROLLBAR HIDE ===== */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===== FOCUS STYLES ===== */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #b45309;
    outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
