/* ==========================================================================
   RESHOT STUDIO - INDUSTRIAL MODERN LOFT DESIGN SYSTEM
   Palette:
   - Slate Raw Steel: #334155
   - Iron Black: #111827 / #0B0F17
   - Rust Copper: #C2410C
   - Rust Accent Hover: #EA580C
   - Warm Concrete Light: #F3F4F6
   - Concrete Metallic Surface: #1E293B
   Typography: Oswald (Headings), Inter (Body)
   ========================================================================== */

:root {
    --color-steel: #334155;
    --color-steel-light: #475569;
    --color-iron-dark: #0B0F17;
    --color-iron-bg: #111827;
    --color-iron-card: #1E293B;
    --color-rust: #C2410C;
    --color-rust-hover: #EA580C;
    --color-concrete: #F3F4F6;
    --color-concrete-dark: #E2E8F0;
    --color-text-main: #1F2937;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 25px rgba(194, 65, 12, 0.25);
    --border-steel: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-concrete);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-iron-dark);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.bg-dark {
    background-color: var(--color-iron-bg);
    color: var(--color-text-light);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--color-text-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.text-center { text-align: center; }

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-rust {
    background-color: var(--color-rust);
    color: #FFF;
    border-color: var(--color-rust);
}

.btn-rust:hover {
    background-color: var(--color-rust-hover);
    border-color: var(--color-rust-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-steel);
    color: var(--color-steel);
}

.btn-outline:hover {
    background-color: var(--color-steel);
    color: #FFF;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFF;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFF;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.125rem;
}

.badge-rust {
    display: inline-block;
    background-color: rgba(194, 65, 12, 0.15);
    color: var(--color-rust);
    border: 1px solid var(--color-rust);
    padding: 0.35rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.05em;
}

.logo-accent {
    color: var(--color-rust);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #94A3B8;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link:hover, .nav-link.active {
    color: #FFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-rust);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: #FFF;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0B0F17 0%, #1E293B 100%);
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(194, 65, 12, 0.15) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-rust);
}

.stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Cards */
.section-header {
    margin-bottom: 3.5rem;
}

.sub-title {
    font-family: var(--font-heading);
    color: var(--color-rust);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

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

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-rust);
    margin: 1rem auto 0;
}

.feature-card {
    background: #FFF;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--color-concrete-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-steel);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(51, 65, 85, 0.1);
    color: var(--color-steel);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Product Showcase Cards */
.product-card {
    background-color: var(--color-iron-card);
    border: var(--border-steel);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-rust);
    box-shadow: var(--shadow-card);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-rust);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    z-index: 5;
}

.product-img-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .product-img-placeholder {
    transform: scale(1.05);
}

.steel-mesh {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    border-bottom: 3px solid var(--color-rust);
}

.iron-frame {
    background: linear-gradient(135deg, #0B0F17 0%, #1F2937 100%);
    border-bottom: 3px solid var(--color-steel);
}

.copper-glow {
    background: linear-gradient(135deg, #2D150B 0%, #1E293B 100%);
    border-bottom: 3px solid var(--color-rust);
}

.dark-wood {
    background: linear-gradient(135deg, #181410 0%, #2A2018 100%);
    border-bottom: 3px solid #854D0E;
}

.product-tag {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
}

.product-info {
    padding: 1.75rem;
}

.product-category {
    color: var(--color-rust);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.product-info h4 {
    font-size: 1.3rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-spec {
    font-size: 0.8rem;
    color: #64748B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
}

.btn-link {
    color: var(--color-rust);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.btn-link:hover {
    color: var(--color-rust-hover);
    padding-left: 5px;
}

/* Reviews Section */
.review-card {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--color-concrete-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.stars {
    color: var(--color-rust);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reviewer strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Banner CTA */
.cta-banner {
    background: linear-gradient(135deg, #111827 0%, #334155 100%);
    color: #FFF;
}

.cta-banner h2 {
    color: #FFF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #94A3B8;
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(180deg, #0B0F17 0%, #1E293B 100%);
    padding: 9rem 1.5rem 4rem;
    color: #FFF;
}

.page-title {
    font-size: 3.25rem;
    color: #FFF;
    margin-bottom: 0.5rem;
}

.page-description {
    color: #94A3B8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: #FFF;
    border: 1px solid var(--color-steel);
    color: var(--color-steel);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-rust);
    border-color: var(--color-rust);
    color: #FFF;
}

/* Contact & Workshop Section */
.floating-form {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--color-concrete-dark);
    box-shadow: var(--shadow-card);
}

.form-group.floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid #CBD5E1;
    border-radius: 2px;
    outline: none;
    background-color: #F8FAFC;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-rust);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}

.form-group.floating label {
    position: absolute;
    left: 1rem;
    top: 0.9rem;
    color: #64748B;
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: 0.35rem;
    font-size: 0.75rem;
    color: var(--color-rust);
    font-weight: 600;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form-checkbox input {
    margin-top: 0.2rem;
}

.error-msg {
    display: none;
    color: #DC2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-group.invalid .form-control {
    border-color: #DC2626;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Workshop Map & Cards */
.workshop-card {
    background: #FFF;
    padding: 1.75rem;
    border-radius: 4px;
    border-left: 4px solid var(--color-rust);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.tag-city {
    background-color: var(--color-concrete);
    color: var(--color-steel);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
}

.map-container {
    height: 180px;
    margin-top: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    overflow: hidden;
}

.map-pin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-pulse {
    width: 14px;
    height: 14px;
    background-color: var(--color-rust);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(194, 65, 12, 0.4);
    animation: pulsePin 2s infinite;
}

@keyframes pulsePin {
    0% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(194, 65, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(194, 65, 12, 0); }
}

.pin-label {
    background-color: rgba(17, 24, 39, 0.9);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-top: 0.5rem;
}

.map-coordinates {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: monospace;
}

/* Legal Pages Styling */
.legal-container {
    max-width: 900px;
}

.legal-card {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--color-concrete-dark);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.legal-card h2 {
    font-size: 1.5rem;
    color: var(--color-steel);
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--color-concrete);
    padding-bottom: 0.5rem;
}

.legal-card p {
    margin-bottom: 1rem;
    color: #334155;
}

.legal-card ul, .legal-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #334155;
}

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

.consent-status-box {
    background-color: var(--color-iron-bg);
    color: #FFF;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--color-rust);
}

.consent-highlight {
    color: var(--color-rust);
    font-family: monospace;
    font-weight: 600;
}

/* Alert Notification */
.alert {
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #DEF7EC;
    color: #03543F;
    border: 1px solid #84E1BC;
}

/* Footer */
.footer {
    background-color: var(--color-iron-dark);
    color: #94A3B8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

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

.footer-col ul li a:hover {
    color: var(--color-rust);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #64748B;
}

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 480px;
    background-color: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-rust);
    border-radius: 4px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.cookie-content h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.cookie-content a {
    color: var(--color-rust);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

/* Scroll Reveal Dynamic Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-iron-dark);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
        bottom: 1rem;
    }
}
