/* ==========================================================================
   transvolterion.com — Vintage Camera & Film Photography Shop
   Color Palette: Darkroom Red, Film Canister Black, Vintage Cream
   Typography: Playfair Display (display), Inter (body), JetBrains Mono (specs)
   ========================================================================== */

:root {
    --primary: #8B1A1A;
    --primary-dark: #6B1010;
    --primary-light: #F5E6E6;
    --secondary: #1A1A1A;
    --secondary-light: #2A2A2A;
    --accent: #C4A265;
    --accent-dark: #A88B50;
    --accent-light: #E8D5B0;
    --text: #2C2420;
    --text-light: #8A7E76;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D8;
    --bg: #FDFBF7;
    --bg-alt: #F5F0E8;
    --border: #D4C9B8;
    --border-light: #E8E0D4;
    --darkroom-red: #8B1A1A;
    --film-black: #1A1A1A;
    --white: #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 4px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 26, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

::selection {
    background: var(--accent-light);
    color: var(--secondary);
}

/* ==========================================================================
   Film Strip Background Pattern
   ========================================================================== */

.film-strip-bg {
    position: relative;
}

.film-strip-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 18px,
            rgba(26, 26, 26, 0.03) 18px,
            rgba(26, 26, 26, 0.03) 20px
        );
    pointer-events: none;
    z-index: 0;
}

.film-strip-border {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--secondary) 0px,
        var(--secondary) 12px,
        transparent 12px,
        transparent 16px
    );
    opacity: 0.3;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    color: var(--cream) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

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

.navbar.scrolled .brand-text {
    color: var(--cream);
}

.navbar-toggler {
    border: 1px solid rgba(196, 162, 101, 0.5);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(196,162,101,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(245, 240, 232, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    font-size: 0.85rem !important;
    padding: 0.5rem 1.25rem !important;
    color: var(--secondary) !important;
}

.nav-cta::after {
    display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: var(--secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-cream {
    border: 1.5px solid var(--cream);
    color: var(--cream);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-cream:hover {
    background: var(--cream);
    color: var(--secondary);
}

.btn-darkroom {
    background: var(--primary);
    color: var(--cream);
    border: none;
    font-weight: 500;
    padding: 0.65rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-darkroom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-dark-vintage {
    border: 1.5px solid var(--border);
    color: var(--text);
    background: transparent;
    font-weight: 500;
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-outline-dark-vintage:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--cream);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(139, 26, 26, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--accent);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.8);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 162, 101, 0.2);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section-padding {
    padding: 5rem 0;
}

.section-padding-lg {
    padding: 6rem 0;
}

.section-bg-alt {
    background: var(--bg-alt);
}

.section-bg-dark {
    background: var(--secondary);
    color: var(--cream);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.8;
}

.section-bg-dark .section-title {
    color: var(--cream);
}

.section-bg-dark .section-desc {
    color: rgba(245, 240, 232, 0.7);
}

/* Aperture ring divider */
.aperture-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0.5rem 0 1.5rem;
}

.aperture-divider span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
}

.aperture-divider span:nth-child(2) {
    background: var(--accent);
}

.aperture-divider-line {
    width: 40px;
    height: 1px;
    background: var(--border);
}

/* ==========================================================================
   Vintage Frame Cards
   ========================================================================== */

.vintage-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.vintage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.vintage-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.vintage-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vintage-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.vintage-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vintage-card .card-body {
    padding: 1.5rem;
}

.vintage-card .card-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.vintage-card .card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.vintage-card .card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.vintage-card .card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.vintage-card .card-condition {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--cream);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius);
}

/* ==========================================================================
   Carousel Styles
   ========================================================================== */

.arrivals-carousel .carousel-inner {
    border-radius: var(--radius);
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    margin: 0 -24px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-dark);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--accent);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    margin: 0 4px;
}

/* ==========================================================================
   Film Stock Grid
   ========================================================================== */

.film-stock-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.film-stock-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.film-stock-card .stock-status {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stock-in {
    background: #E8F5E9;
    color: #2E7D32;
}

.stock-low {
    background: #FFF3E0;
    color: #E65100;
}

.stock-out {
    background: #FFEBEE;
    color: #C62828;
}

/* ==========================================================================
   Camera Finder Feature
   ========================================================================== */

.finder-section {
    background: var(--secondary);
    position: relative;
}

.finder-step {
    display: none;
}

.finder-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.finder-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.finder-progress-dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(196, 162, 101, 0.2);
    transition: var(--transition);
}

.finder-progress-dot.active {
    background: var(--accent);
}

.finder-progress-dot.completed {
    background: var(--accent);
}

.selector-card {
    background: rgba(245, 240, 232, 0.05);
    border: 1.5px solid rgba(196, 162, 101, 0.15);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.selector-card:hover {
    border-color: var(--accent);
    background: rgba(196, 162, 101, 0.08);
    transform: translateY(-2px);
}

.selector-card.selected {
    border-color: var(--accent);
    background: rgba(196, 162, 101, 0.12);
    box-shadow: 0 0 0 1px var(--accent);
}

.selector-card .card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.selector-card .card-label {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    font-weight: 600;
}

.selector-card .card-sublabel {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 0.3rem;
}

/* Budget slider */
.budget-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(196, 162, 101, 0.2);
    border-radius: 2px;
    outline: none;
}

.budget-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 0 2px var(--accent);
}

.budget-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 0 2px var(--accent);
}

/* Results cards */
.result-card {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(196, 162, 101, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.result-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(196, 162, 101, 0.15);
}

.result-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.result-card .result-body {
    padding: 1.5rem;
}

.result-card .result-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 600;
}

.result-card .result-specs {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 0.5rem;
}

.result-card .result-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.result-card .result-condition {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    background: rgba(196, 162, 101, 0.15);
    color: var(--accent);
}

/* Compare mode */
.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(196, 162, 101, 0.15);
    text-align: left;
}

.compare-table td {
    font-size: 0.9rem;
    color: var(--cream);
    padding: 0.75rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}

.compare-table td.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   Services Page
   ========================================================================== */

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1.5rem;
}

.pricing-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-dark);
    background: var(--cream);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
    border-left: 2px solid var(--border);
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--white);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-dark);
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.15);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.contact-info-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--cream);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 0.15rem;
}

.contact-info-item h6 {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--secondary);
    color: rgba(245, 240, 232, 0.7);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
}

.footer-contact a:hover {
    color: var(--accent);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(196, 162, 101, 0.25);
    border-radius: var(--radius);
    color: var(--accent);
    transition: var(--transition);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-bottom p {
    color: rgba(245, 240, 232, 0.4);
}

.footer-attribution {
    color: rgba(245, 240, 232, 0.4) !important;
    font-size: 0.8rem;
}

.footer-attribution:hover {
    color: var(--accent) !important;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--cream);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    border-top: 2px solid var(--accent);
}

.cookie-banner p {
    color: rgba(245, 240, 232, 0.8);
}

.cookie-link {
    color: var(--accent) !important;
    text-decoration: underline;
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--secondary);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Shutter click animation */
@keyframes shutterClick {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.shutter-transition {
    animation: shutterClick 0.3s ease;
}

/* Film advance animation */
@keyframes filmAdvance {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Page Header (Inner Pages)
   ========================================================================== */

.page-header {
    background: var(--secondary);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 12px,
        transparent 12px,
        transparent 16px
    );
    opacity: 0.4;
}

.page-header-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.page-header-desc {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1.05rem;
    max-width: 600px;
}

.page-breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.page-breadcrumb a {
    color: var(--accent);
}

/* ==========================================================================
   Filter Pills
   ========================================================================== */

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-pill {
    padding: 0.45rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--secondary);
    color: var(--cream);
    border-color: var(--secondary);
}

/* ==========================================================================
   Success Message
   ========================================================================== */

.success-message {
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.success-message i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 0.75rem;
    display: block;
}

.success-message h4 {
    color: #1B5E20;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #2E7D32;
    margin-bottom: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent-light);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(196, 162, 101, 0.1);
    border-radius: 50%;
}

.cta-banner .cta-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-banner .cta-text {
    color: rgba(245, 240, 232, 0.8);
    font-size: 1.05rem;
    max-width: 550px;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        margin: 0.75rem -1rem 0;
        padding: 1rem 1.5rem;
        border-radius: var(--radius);
    }

    .nav-cta {
        margin-top: 0.5rem;
        text-align: center;
        display: block;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero-title { font-size: 2.75rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-number { font-size: 2rem; }

    .section-padding { padding: 3.5rem 0; }
    .section-padding-lg { padding: 4rem 0; }
}

@media (max-width: 767.98px) {
    .hero-section { min-height: 80vh; }
    .hero-title { font-size: 2.25rem; }
    .hero-desc { font-size: 1rem; }
    .hero-content { padding: 5rem 0 3rem; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .page-header { padding: 7rem 0 3rem; }
    .page-header-title { font-size: 2.25rem; }

    .section-title { font-size: 1.75rem; }

    .contact-info-card { margin-top: 2rem; }

    .selector-card { min-height: 120px; padding: 1.25rem; }
}

@media (max-width: 575.98px) {
    .hero-section { min-height: 70vh; }
    .hero-title { font-size: 1.85rem; }

    .section-padding { padding: 3rem 0; }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-number { font-size: 1.75rem; }

    .vintage-card .card-body { padding: 1.25rem; }

    .cta-banner { padding: 3rem 0; }
    .cta-banner .cta-title { font-size: 1.75rem; }

    .cookie-banner .d-flex {
        text-align: center;
    }
}

/* ==========================================================================
   Film Page Specific
   ========================================================================== */

.film-type-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.film-type-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.film-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.film-color-icon { background: #FFF3E0; color: #E65100; }
.film-bw-icon { background: #F5F5F5; color: #212121; }
.film-slide-icon { background: #E8EAF6; color: #283593; }

/* ==========================================================================
   Misc Utilities
   ========================================================================== */

.text-accent { color: var(--accent) !important; }
.bg-cream { background: var(--cream) !important; }
.font-display { font-family: var(--font-display) !important; }
.font-mono { font-family: var(--font-mono) !important; }
.border-accent { border-color: var(--accent) !important; }
.letter-spacing-wide { letter-spacing: 2px; }
