@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Nunito:wght@700;800;900&family=Comfortaa:wght@700&display=swap'); :root { /* Color Palette - PlumbFlow Inspired */ --primary: #f47f20; --primary-rgb: 244, 127, 32; --primary-dark: #d66c18; --secondary: #0d1b2a; --secondary-rgb: 13, 27, 42; --secondary-light: #1b263b; --secondary-dark: #07101a; --accent: #e0e1dd; --white: #ffffff; --black: #000000; --text-main: #1d2a33; --text-muted: #4a5a66; --text-on-dark: #ffffff; --bg-main: #ffffff; --bg-soft: #f8f9fa; --bg-offset: #f1f3f5; --border: #e2e8f0; --radius: 8px; --radius-lg: 12px; --primary-soft: rgba(244, 127, 32, 0.1); --bg-contrast: var(--secondary); --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25); --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } * { box-sizing: border-box; padding: 0; margin: 0; } html, body { max-width: 100vw; overflow-x: clip; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); background: var(--bg-main); line-height: 1.6; -webkit-font-smoothing: antialiased; } h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--secondary); } a { color: inherit; text-decoration: none; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; height: auto; display: block; } .cover-image { object-fit: cover; width: 100%; height: 100%; } .breadcrumbs { display: flex; gap: 0.75rem; list-style: none; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; opacity: 0.6; } .breadcrumbs li::after { content: "—"; margin-left: 0.75rem; color: var(--primary); } .breadcrumbs li:last-child::after { content: none; } .breadcrumbs a:hover { color: var(--primary); } .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; } .section { padding: 5rem 0; } .section-tight { padding: 3rem 0; } .section-soft { background: var(--bg-soft); } .section-contrast { background: var(--secondary); color: var(--white); } .eyebrow { display: inline-block; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1rem; } /* Typography Scale */ h1 { font-size: clamp(2.5rem, 5vw, 4rem); } h2 { font-size: clamp(2rem, 4vw, 2.75rem); } h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); } p { color: var(--text-muted); margin-bottom: 1.25rem; } /* Buttons */ .button { display: inline-flex; align-items: center; justify-content: center; padding: 0.875rem 2.25rem; font-weight: 700; border-radius: var(--radius); transition: var(--transition); cursor: pointer; border: none; gap: 0.5rem; font-size: 1rem; } .button-primary { background: var(--primary); color: var(--white); } .button-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); } .button-secondary { background: var(--secondary); color: var(--white); } .button-secondary:hover { background: var(--secondary-light); transform: translateY(-2px); } .button-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); } .button-outline:hover { background: var(--primary); color: var(--white); } /* Site Layout Components */ .site-shell { display: flex; flex-direction: column; min-height: 100vh; } main { flex: 1; } /* Utility Bar */ .site-utility-bar { background: var(--secondary-dark); color: var(--white); padding: 0.625rem 0; font-size: 0.8125rem; font-weight: 500; } .utility-inner { display: flex; justify-content: space-between; align-items: center; } .utility-list { display: flex; gap: 2rem; align-items: center; } .utility-link { color: var(--accent); } .utility-link:hover { color: var(--primary); } /* Header */ .site-header { background: var(--white); padding: 1.25rem 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; } .site-header--scrolled { background: rgba(255, 255, 255, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); border-bottom-color: rgba(226, 232, 240, 0.5); } .site-header-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; } .brand { display: inline-flex; align-items: center; flex: 0 0 auto; line-height: 0; } .brand-mark { width: auto; height: auto; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.25rem; border-radius: 6px; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); } .brand-mark-logo { background: transparent; clip-path: none; border-radius: 0; overflow: visible; width: clamp(220px, 24vw, 360px); } .brand-logo { display: block; width: 100%; height: auto; } .brand-logo--header { filter: drop-shadow(0 12px 28px rgba(13, 27, 42, 0.08)); } .site-footer .brand-mark-logo { width: clamp(240px, 20vw, 320px); } /* ── Brand Logo Text Component ─────────────────────── */ .brand-logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; width: 100%; line-height: 1; } .blt-name { font-family: 'Comfortaa', 'Nunito', sans-serif; font-weight: 700; color: #1a8c8c; font-size: clamp(1.05rem, 2.3vw, 1.65rem); line-height: 1; white-space: nowrap; letter-spacing: 0px; } .blt-tagline { display: flex; align-items: center; gap: 16px; width: 100%; } .blt-line { flex: 1; height: 1.5px; background: #90d0d0; border-radius: 2px; min-width: 20px; } .blt-city { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: clamp(0.5rem, 1.05vw, 0.7rem); color: #f47f20; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap; } /* override line-height:0 from .brand when using text logo */ .brand-mark-logo:has(.brand-logo-text) { line-height: 1; } .site-footer .brand-logo-text .blt-name { font-size: clamp(1.1rem, 2vw, 1.55rem); } .main-nav { display: flex; gap: 2.25rem; } .nav-link { font-weight: 600; color: var(--secondary); position: relative; } .nav-link:hover { color: var(--primary); } .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); } .nav-link:hover::after { width: 100%; } /* Featured Products Section */ .featured-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; } .featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } /* Mobile Menu Toggle */ .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; line-height: 0; color: var(--secondary); } .hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; } .hamburger span { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; } .hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); } .hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } /* Mobile Nav Drawer */ .mobile-nav { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: var(--white); z-index: 200; padding: 5rem 1.75rem 2rem; box-shadow: var(--shadow-2xl); transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; } .mobile-nav--open { transform: translateX(0); } .mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.45); z-index: 150; backdrop-filter: blur(2px); } .mobile-nav-links { display: flex; flex-direction: column; } .mobile-nav-link { font-size: 1.0625rem; font-weight: 600; color: var(--secondary); padding: 1rem 0; border-bottom: 1px solid var(--border); display: block; transition: color 0.2s ease; } .mobile-nav-link:hover { color: var(--primary); } .mobile-nav-cta { margin-top: 1.75rem; text-align: center; display: block; } /* --- Catalog Layout --- */ .catalog-shell { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; } .catalog-section { scroll-margin-top: 7rem; } .catalog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 2rem; align-self: start; background: var(--white); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); } .filter-group { margin: 0; display: flex; flex-direction: column; gap: 0.75rem; } .filter-label { display: block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); } .filter-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; } .filter-chip { padding: 0.5rem 1rem; border: 1px solid var(--border); border-radius: 20px; background: transparent; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; } .filter-chip:hover { border-color: var(--primary); color: var(--primary); } .filter-chip.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: var(--shadow-sm); } .filter-group legend { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; } .filter-option { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; font-size: 0.9375rem; transition: color 0.2s ease; } .filter-option:hover { color: var(--primary); } .filter-option input { width: 1.25rem; height: 1.25rem; accent-color: var(--primary); } .catalog-hero { background: var(--bg-contrast); color: white; border-radius: 12px; overflow: hidden; margin-bottom: 3rem; display: grid; grid-template-columns: 1fr 1fr; } .catalog-hero-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; } .catalog-hero-content h2 { color: white; } .catalog-hero-media { position: relative; min-height: 300px; } .catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); } .catalog-count { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); } .selected-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; } .selected-chip { background: var(--primary-soft); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; } @media (max-width: 1024px) { .catalog-shell { grid-template-columns: 1fr; gap: 2rem; } .catalog-sidebar { position: static; top: auto; gap: 1.5rem; padding: 1.5rem; box-shadow: none; } .catalog-hero { grid-template-columns: 1fr; } .material-card--catalog.reveal, .material-card--catalog.reveal.active { opacity: 1; transform: none; transition: none; } } @media (max-width: 768px) { .catalog-toolbar { flex-direction: column; align-items: flex-start; gap: 1rem; } .material-grid { grid-template-columns: 1fr; gap: 1.5rem; } } /* --- Contact Layout --- */ .contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; } .contact-card { background: white; padding: 3rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-xl); } .card-heading { margin-bottom: 3rem; } .contact-sidebar { display: flex; flex-direction: column; gap: 2rem; } .map-card { background: var(--bg-contrast); color: white; padding: 2.5rem; border-radius: 12px; text-align: center; } .map-placeholder { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; } .map-pin { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.25rem; box-shadow: 0 0 0 10px rgba(244, 127, 32, 0.2); } .details-grid { display: grid; gap: 1.5rem; } .detail-card { padding: 1.5rem; background: white; border: 1px solid var(--border); border-radius: 12px; } .detail-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; } .detail-list li { display: flex; justify-content: space-between; font-size: 0.9375rem; } .detail-list.stacked li { flex-direction: column; gap: 0.25rem; } /* --- Forms --- */ .form-grid { display: grid; gap: 2rem; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; } .field { display: flex; flex-direction: column; gap: 0.75rem; } .field label { font-size: 0.875rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; } .field input, .field select, .field textarea { padding: 1rem; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; } .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); } .field textarea { min-height: 150px; resize: vertical; } .field-error { font-size: 0.75rem; color: #dc3545; font-weight: 600; } .form-status { padding: 1rem; border-radius: 8px; font-size: 0.9375rem; font-weight: 600; } .form-status.success { background: #d4edda; color: #155724; } .form-status.error { background: #f8d7da; color: #721c24; } @media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } } @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .contact-card { padding: 1.5rem; } } /* --- Page Heroes --- */ .page-hero { padding: 6rem 0 5rem; background-color: var(--bg-contrast); color: white; position: relative; overflow: hidden; } .page-hero h1, .page-hero h2, .page-hero h3 { color: white; } .page-hero p, .page-hero .hero-copy { color: rgba(255, 255, 255, 0.82); } .page-hero .breadcrumbs { color: rgba(255, 255, 255, 0.55); } .page-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.55); } .page-hero .breadcrumbs a:hover { color: var(--primary); } .page-hero .page-hero-meta span { color: rgba(255, 255, 255, 0.7); } .breadcrumb-strip { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 0.65rem 0; } .breadcrumb-strip .breadcrumbs { margin-bottom: 0; opacity: 1; color: var(--text-muted); } .breadcrumb-strip .breadcrumbs a { color: var(--text-muted); } .breadcrumb-strip .breadcrumbs a:hover { color: var(--primary); } .page-hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 70% 30%, rgba(244, 127, 32, 0.15) 0%, transparent 70%); pointer-events: none; } .page-hero-shell { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; } .page-hero-copy h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 1.5rem; } .hero-copy { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin-bottom: 2rem; } .page-hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.875rem; } .page-hero-meta span { display: flex; align-items: center; gap: 0.5rem; opacity: 0.8; } .page-hero-meta span::before { content: "→"; color: var(--primary); } .page-hero-visual { position: relative; height: 450px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-2xl); } .hero-visual-note { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--primary); color: white; padding: 0.5rem 1rem; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 4px; z-index: 5; box-shadow: var(--shadow-lg); } @media (max-width: 1024px) { .page-hero-shell { grid-template-columns: 1fr; text-align: center; gap: 3rem; } .page-hero-visual { height: 400px; } } /* --- Material Catalog --- */ .catalog-intro { margin-bottom: 4rem; max-width: 800px; } .material-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem; } .material-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); } .material-card-media { position: relative; height: 240px; background: #f8f9fa; overflow: hidden; } .material-card-media img { transition: transform 0.6s ease; } .material-card--catalog { will-change: transform; } .material-card-content { padding: 2rem; } .material-card-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.75rem; } .material-card h3 { font-size: 1.25rem; margin-bottom: 1rem; } .material-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.875rem; font-weight: 600; } @media (hover: hover) and (pointer: fine) { .material-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-soft); } .material-card:hover .material-card-media img { transform: scale(1.05); } } /* --- Site Footer --- */ .site-footer { background-color: var(--bg-contrast); color: white; padding: 4rem 0 3rem; border-top: 1px solid rgba(255, 255, 255, 0.07); } .site-footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; } .footer-brand { display: flex; flex-direction: column; gap: 1.5rem; } .footer-description { color: rgba(255, 255, 255, 0.72); font-size: 0.9375rem; line-height: 1.65; max-width: 360px; } .footer-contact-list { display: flex; flex-direction: column; gap: 1rem; } .footer-contact-item { font-size: 0.875rem; color: rgba(255, 255, 255, 0.78); } .footer-contact-item { display: flex; flex-direction: column; gap: 0.2rem; } .footer-contact-item strong { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); font-weight: 700; } .footer-contact-item a { color: inherit; text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: all 0.3s ease; } .footer-contact-item a:hover { color: var(--primary); border-color: var(--primary); } .footer-group-title { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.5rem; color: rgba(255, 255, 255, 0.9); font-weight: 700; } .footer-links { list-style: none; padding: 0; margin: 0; } .footer-links li { margin-bottom: 1rem; } .footer-link { color: white; text-decoration: none; opacity: 0.7; font-size: 0.9375rem; transition: all 0.3s ease; } .footer-link:hover { opacity: 1; color: var(--primary); padding-left: 0.25rem; } .site-footer-bottom { padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.875rem; } .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; } .footer-meta { opacity: 0.5; } .footer-socials { display: flex; gap: 1.5rem; } /* Decorative and Special Panels */ .bg-layer { background: var(--bg-soft); position: relative; } .image-frame.decorative::before { content: ""; position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border-top: 4px solid var(--primary); border-left: 4px solid var(--primary); z-index: 1; } .image-frame.elevated { transform: translateY(-20px); box-shadow: var(--shadow-xl); } @media (max-width: 960px) { .image-frame.elevated { transform: none; } } .glass-panel { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); padding: 3rem; border-radius: 20px; } .text-display { font-size: 2.5rem; line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; } .text-lg { font-size: 1.25rem; line-height: 1.6; } .home-hero { position: relative; padding: 8rem 0; background: var(--secondary); color: var(--white); overflow: hidden; } .home-hero-bg { position: absolute; inset: 0; opacity: 0.3; } .home-hero-inner { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; } /* Reviews Badge */ .hero-reviews { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; margin-bottom: 2.5rem; padding: 0.5rem 0.25rem; border-radius: 8px; } .hero-reviews .stars { display: flex; gap: 2px; color: #FFB800; } .hero-reviews .stars svg { width: 16px; height: 16px; fill: currentColor; } .hero-reviews span { font-size: 0.9rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); letter-spacing: 0.01em; } .home-hero-copy h1 { color: var(--white); margin-bottom: 2rem; } .home-hero-copy p { color: var(--accent); font-size: 1.25rem; line-height: 1.4; margin-bottom: 3rem; } /* Service Band */ .quick-service-band { background: var(--primary); padding: 2.5rem 0; color: white; box-shadow: 0 10px 30px rgba(244, 127, 32, 0.2); position: relative; z-index: 10; margin-top: -3rem; } .quick-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; } .service-item { text-align: center; } .service-item h4 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; opacity: 0.8; } .service-item span, .service-item a { font-weight: 700; font-size: 1.125rem; display: block; } @media (max-width: 900px) { .quick-service-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } } @media (max-width: 600px) { .quick-service-grid { grid-template-columns: 1fr; gap: 1.5rem; } } /* --- Category Cards --- */ .category-card { transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease; cursor: pointer; } .category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); } .category-card img { transition: transform 0.6s ease; } .category-card:hover img { transform: scale(1.05); } /* --- Reveal Animations --- */ .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); } .reveal.active { opacity: 1; transform: translateY(0); } .reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .reveal-delay-3 { transition-delay: 0.3s; } @media (max-width: 1024px) { .home-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 4rem; } .site-footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; } } @media (max-width: 768px) { .site-utility-bar, .main-nav, .header-actions { display: none; } .mobile-menu-toggle { display: flex; } .mobile-nav { display: block; } .mobile-nav-overlay { display: block; } .featured-grid { grid-template-columns: repeat(2, 1fr); } .featured-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; } .quick-service-grid { grid-template-columns: 1fr 1fr; } .site-footer-top { grid-template-columns: 1fr; } } /* ============================== HERO SECTION — SPLIT LAYOUT ============================== */ .home-hero { display: grid; grid-template-columns: minmax(0, 60%) minmax(0, 40%); min-height: 90vh; overflow: hidden; background: var(--secondary); padding: 0 !important; position: relative; color: var(--white); } .home-hero-left { background: var(--secondary); display: flex; align-items: center; padding: 6rem max(2rem, calc((100vw - 1280px) / 2 + 1.5rem)); padding-right: 6rem; position: relative; } .home-hero-left::before { content: ""; position: absolute; top: 0; right: -128px; bottom: 0; width: clamp(88px, 8vw, 128px); background: rgba(var(--secondary-rgb), 0.78); clip-path: ellipse(72% 156% at 18% 62%); pointer-events: none; z-index: 1; } .home-hero-left::after { content: ""; position: absolute; top: 0; right: -214px; bottom: 0; width: clamp(280px, 22vw, 392px); background: linear-gradient( to right, var(--secondary) 0%, var(--secondary) 40%, rgba(13, 27, 42, 0.95) 55%, rgba(13, 27, 42, 0.85) 65%, rgba(13, 27, 42, 0.60) 75%, rgba(13, 27, 42, 0.30) 86%, rgba(13, 27, 42, 0.08) 94%, transparent 100% ); clip-path: ellipse(80% 158% at 12% 62%); pointer-events: none; z-index: 2; } .home-hero-visual { position: relative; overflow: hidden; isolation: isolate; min-height: 100%; margin-left: -122px; clip-path: ellipse(66% 154% at 100% 62%); } .home-hero-visual::before { display: none; } .home-hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; } .home-hero-visual-overlay { position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(13, 27, 42, 0.14) 0%, rgba(13, 27, 42, 0.04) 38%, rgba(13, 27, 42, 0.12) 100% ); z-index: 1; } /* ── Hero Cinema ── */ .hc-root { position: relative; width: 100%; height: 100%; overflow: hidden; } /* Full-coverage slide */ .hc-slide-full { position: absolute; inset: 0; } /* Subtle overlay on left edge */ .hc-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13, 27, 42, 0.35) 0%, transparent 45%); z-index: 2; pointer-events: none; } /* Dot indicators */ .hc-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; } .hc-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.4); cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; } .hc-dot-active { background: var(--primary); transform: scale(1.4); } /* ── Floating video card ── */ .hc-video-card { position: absolute; bottom: 3rem; right: 3rem; z-index: 20; width: clamp(280px, 24vw, 390px); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1.5px rgba(255, 255, 255, 0.15); background: #000; } .hc-video-small { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: 0.95; } .hc-video-shield { position: absolute; right: 0.75rem; bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.7rem; border-radius: 999px; background: linear-gradient(135deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.72)); color: rgba(255, 255, 255, 0.96); font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24); } .hc-video-shield-line { width: 18px; height: 2px; border-radius: 999px; background: var(--primary); } .hc-video-shield-text { white-space: nowrap; } .hc-video-card-badge { position: absolute; bottom: 0.2rem; right: 0.2rem; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 3px 8px; border-radius: 4px; line-height: 1.4; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); } /* Override the old home-hero-bg and home-hero-inner since we restructured */ .home-hero-bg { display: none; } .home-hero-inner { display: block; } .home-hero-copy { max-width: 600px; width: 100%; } .home-hero-copy h1 { color: var(--white); font-size: clamp(2.5rem, 3.5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; } .home-hero-copy p { color: rgba(224, 225, 221, 0.85); font-size: 1.2rem; line-height: 1.6; margin-bottom: 2.5rem; } .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; } @media (max-width: 1024px) { .home-hero { grid-template-columns: 1fr; min-height: auto; } .home-hero-left { padding: 5rem 1.5rem; padding-right: 1.5rem; } .home-hero-left::after { display: none; } .home-hero-left::before { display: none; } .home-hero-visual { height: 400px; margin-left: 0; clip-path: none; } .home-hero-visual::before { display: none; } .home-hero-copy { max-width: 100%; text-align: center; } .hero-actions { justify-content: center; } .hc-video-card { width: 260px; bottom: 1.5rem; right: 1.5rem; } .hc-video-shield { font-size: 0.58rem; padding: 0.4rem 0.55rem; } } @media (max-width: 600px) { .home-hero-visual { height: 280px; } .hc-video-card { width: 200px; right: 1rem; bottom: 1rem; } .hc-video-shield { gap: 0.35rem; padding: 0.32rem 0.45rem; font-size: 0.52rem; } .hc-video-shield-line { width: 12px; } } /* ============================== PROCESS TIMELINE — ZIGZAG ============================== */ .process-timeline { position: relative; padding: 1rem 0 2rem; } /* Vertical rail line */ .process-rail { position: absolute; left: calc(50% - 1.5px); top: 0; bottom: 0; width: 3px; pointer-events: none; z-index: 0; } .process-rail-track { position: absolute; inset: 0; background: #dee2e8; border-radius: 99px; } .process-rail-fill { position: absolute; top: 0; left: 0; right: 0; background: var(--primary); border-radius: 99px; height: calc(var(--timeline-progress, 0) * 100%); transition: height 0.06s linear; } /* Hide standalone markers — we use process-row-pin instead */ .process-rail-markers { display: none; } /* ---- rows ---- */ .process-rows { display: flex; flex-direction: column; } .process-row { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; padding: 3.5rem 0; min-height: 200px; } /* is-right: [spacer col1] [pin col2] [card col3] */ .process-row.is-right .process-row-spacer { grid-column: 1; grid-row: 1; } .process-row.is-right .process-row-pin { grid-column: 2; grid-row: 1; } .process-row.is-right .process-step-card { grid-column: 3; grid-row: 1; } /* is-left: [card col1] [pin col2] [spacer col3] */ .process-row.is-left .process-step-card { grid-column: 1; grid-row: 1; } .process-row.is-left .process-row-pin { grid-column: 2; grid-row: 1; } .process-row.is-left .process-row-spacer { grid-column: 3; grid-row: 1; } /* The dot on the line */ .process-row-pin { width: 24px; height: 24px; border-radius: 50%; background: #dee2e8; border: 4px solid #ffffff; box-shadow: 0 0 0 2px #dee2e8; margin: 0 auto; position: relative; z-index: 3; transition: background 0.4s ease, box-shadow 0.4s ease; flex-shrink: 0; } .process-row.is-active .process-row-pin { background: var(--primary); box-shadow: 0 0 0 3px rgba(244, 127, 32, 0.25); } /* Step card */ .process-step-card { background: var(--secondary); color: white; border-radius: 12px; padding: 2rem 2.5rem; opacity: 0; transform: translateX(24px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); } .process-row.is-left .process-step-card { transform: translateX(-24px); } .process-row.is-active .process-step-card { opacity: 1; transform: translateX(0); } .process-step-number { display: block; font-size: 2.25rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; } .process-step-card h3 { font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 0.75rem; line-height: 1.3; } .process-step-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.9375rem; margin-bottom: 0; line-height: 1.65; } /* Mobile: stack vertically */ @media (max-width: 768px) { .process-rail { left: 20px; transform: none; } .process-row { grid-template-columns: 44px 1fr; grid-template-rows: auto; padding: 1.5rem 0; min-height: auto; } .process-row.is-right .process-row-spacer, .process-row.is-left .process-row-spacer { display: none; } .process-row.is-right .process-row-pin, .process-row.is-left .process-row-pin { grid-column: 1; grid-row: 1; } .process-row.is-right .process-step-card, .process-row.is-left .process-step-card { grid-column: 2; grid-row: 1; transform: translateX(0) !important; } } /* ============================== ABOUT PAGE LAYOUTS ============================== */ .about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; } .about-story-copy { display: flex; flex-direction: column; gap: 3rem; } .story-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; } .about-story-media { position: sticky; top: 120px; } .image-frame { position: relative; border-radius: 12px; overflow: hidden; height: 500px; } .image-frame.wide { height: 420px; } @media (max-width: 960px) { .about-story { grid-template-columns: 1fr; gap: 3rem; } .about-story-media { position: static; } .image-frame { height: 320px; } } /* Feature Grid */ .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .feature-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 2.5rem 2rem; transition: background 0.3s ease; } .feature-card:hover { background: rgba(255, 255, 255, 0.08); } .feature-card h3 { font-size: 1.125rem; color: white; margin-bottom: 0.75rem; } .feature-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.9375rem; margin-bottom: 0; } .feature-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 1.25rem; display: block; } @media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } } /* Content Panel */ .content-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; border-radius: 20px; padding: 4rem; } .content-panel-media { position: relative; } .content-panel-copy h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; } .inline-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; } @media (max-width: 960px) { .content-panel { grid-template-columns: 1fr; gap: 3rem; padding: 2.5rem; } } /* CTA panel */ .cta-panel { display: flex; justify-content: space-between; align-items: center; gap: 3rem; background: var(--bg-soft); padding: 3rem 3.5rem; border-radius: 16px; border: 1px solid var(--border); } .cta-panel h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.5rem; } .cta-panel p { margin-bottom: 0; } @media (max-width: 768px) { .cta-panel { flex-direction: column; text-align: center; padding: 2rem; } } /* Utility */ .align-center { text-align: center; margin-bottom: 0; } .align-center h2, .align-center p { max-width: 700px; margin-left: auto; margin-right: auto; } .section-header { margin-bottom: 3rem; } .section-header.align-center { text-align: center; } .overflow-hidden { overflow: hidden; } .bg-soft { background: var(--bg-soft); } .bg-contrast { background: var(--secondary); color: white; } .section-contrast { background: var(--secondary); color: white; } .section-contrast h2, .section-contrast h3 { color: white; } /* ============================== WIDE SCREEN ENHANCEMENTS ============================== */ @media (min-width: 1440px) { .container { max-width: 1400px; } .home-hero-copy h1 { font-size: 4.5rem; } } @media (min-width: 1920px) { .container { max-width: 1600px; } .home-hero-left { padding-right: 8rem; } } /* ============================== CATEGORY GRID RESPONSIVE ============================== */ @media (max-width: 900px) { .category-grid { grid-template-columns: 1fr !important; } } @media (max-width: 1200px) { .category-grid { grid-template-columns: repeat(2, 1fr) !important; } } /* ============================== FOOTER — BRAND & MAP FIXES ============================== */ .brand-logo--footer { filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28)); } /* Footer map section */ .footer-map-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); } .footer-map-label { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; display: block; } .footer-map-embed { width: 100%; height: 200px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); } .footer-map-embed iframe { width: 100%; height: 100%; border: none; display: block; } /* Footer layout — 5 columns when map is included */ .site-footer-top { grid-template-columns: 1.4fr repeat(3, 0.7fr) 1.2fr; } @media (max-width: 1200px) { .site-footer-top { grid-template-columns: 1fr 1fr; } } @media (max-width: 640px) { .site-footer-top { grid-template-columns: 1fr; } } /* ============================== CTA SECTION — SEAMLESS INTO FOOTER ============================== */ /* Remove ugly gap/stripe between bg-contrast sections */ .bg-contrast+.site-footer { border-top: none; padding-top: 3rem; } /* ============================== CONTACT PAGE — MAP EMBED ============================== */ .contact-map-embed { width: 100%; height: 300px; border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.15); } .contact-map-embed iframe { width: 100%; height: 100%; border: none; display: block; } /* ============================== STATS BAND ============================== */ .stats-band { background: var(--secondary); padding: 3.5rem 0; border-top: 3px solid var(--primary); } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; } .stat-item { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.5rem 1rem; border-right: 1px solid rgba(255, 255, 255, 0.08); } .stats-grid>div:last-child .stat-item { border-right: none; } .stat-value { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1; } .stat-label { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); } @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item { border-right: none; } } @media (max-width: 480px) { .featured-grid { grid-template-columns: 1fr; } } /* ============================== TESTIMONIALS CAROUSEL ============================== */ .tc-wrapper { position: relative; overflow: visible; padding: 0.5rem 0 2rem; } .tc-track-container { overflow-x: clip; overflow-y: visible; padding: 0.85rem 0 1.5rem; margin: -0.85rem 0 -1.5rem; } .tc-track { display: flex; gap: 1.75rem; width: max-content; animation: tc-scroll 40s linear infinite; } .tc-wrapper:hover .tc-track { animation-play-state: paused; } @keyframes tc-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-33.333%)); } } .tc-slide { width: 380px; flex-shrink: 0; } @media (max-width: 600px) { .tc-slide { width: 300px; } } .tc-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 2rem; height: 100%; display: flex; flex-direction: column; gap: 1rem; cursor: default; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); } .tc-card:hover { border-color: var(--primary); } .tc-card-top { display: flex; justify-content: space-between; align-items: center; } .tc-stars { display: flex; gap: 2px; font-size: 1.1rem; } .tc-star { color: #d1d5db; } .tc-star.filled { color: #f59e0b; } .tc-date { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; } .tc-quote { font-size: 0.9375rem; line-height: 1.65; color: var(--text-main); flex: 1; font-style: normal; } .tc-author { display: flex; align-items: center; gap: 0.875rem; padding-top: 1rem; border-top: 1px solid var(--border); } .tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; } .tc-name { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--secondary); } .tc-source { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; } .tc-fade-left, .tc-fade-right { position: absolute; top: 0; bottom: 0; width: 120px; pointer-events: none; z-index: 2; } .tc-fade-left { left: 0; background: linear-gradient(to right, var(--bg-soft), transparent); } .tc-fade-right { right: 0; background: linear-gradient(to left, var(--bg-soft), transparent); } /* ============================== HOME CTA SECTION ============================== */ .home-cta-section { background: var(--secondary); padding: 6rem 0; color: white; } .home-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } .home-cta-copy h2 { color: white; font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1.25rem; } .home-cta-copy>p { color: rgba(255, 255, 255, 0.7); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; } .home-cta-contact-items { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; } .home-cta-contact-item { display: flex; align-items: center; gap: 0.875rem; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.2s ease; } a.home-cta-contact-item:hover { color: var(--primary); } .home-cta-contact-icon { font-size: 1rem; flex-shrink: 0; } .home-cta-full-link { border-color: rgba(255, 255, 255, 0.4); color: rgba(255, 255, 255, 0.9); } .home-cta-full-link:hover { border-color: white; color: white; background: rgba(255, 255, 255, 0.08); } .home-cta-form-card { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2); } .home-cta-form-card h3 { font-size: 1.375rem; color: var(--secondary); margin-bottom: 0.25rem; } .home-cta-form-card>p { color: var(--text-muted); } .home-cta-form { display: flex; flex-direction: column; gap: 1rem; } .home-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } .home-cta-input { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.9375rem; color: var(--text-main); background: var(--bg-soft); transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; } .home-cta-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); background: white; } .home-cta-textarea { resize: none; } .home-cta-error { font-size: 0.8125rem; color: #dc2626; margin: 0; } .home-cta-success { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2.5rem 1rem; text-align: center; } .home-cta-success span { font-size: 2.5rem; color: #16a34a; } .home-cta-success p { color: var(--text-muted); font-size: 0.9375rem; margin: 0; } @media (max-width: 900px) { .home-cta-grid { grid-template-columns: 1fr; gap: 3rem; } .home-cta-row { grid-template-columns: 1fr; } } /* ============================== PRODUCTS OVERVIEW ============================== */ .inventory-overview-header { max-width: 760px; margin: 0 auto 3rem; text-align: center; } .inventory-overview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; } .inventory-overview-card { display: grid; grid-template-columns: 1fr; background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-xl); } .inventory-overview-media { position: relative; min-height: 280px; } .inventory-overview-copy { padding: 2rem; } .inventory-overview-copy h2 { margin-bottom: 1rem; } .inventory-chip-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 2rem; } .inventory-chip { display: inline-flex; align-items: center; padding: 0.55rem 0.9rem; border-radius: 999px; background: var(--bg-soft); color: var(--secondary); font-size: 0.8125rem; font-weight: 700; } /* ============================== NOT FOUND ============================== */ .not-found-page { position: relative; overflow: hidden; background: radial-gradient(circle at top left, rgba(244, 127, 32, 0.2), transparent 30%), linear-gradient(135deg, #f8f9fa 0%, #eef2f5 100%); } .not-found-shell { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 2rem; align-items: stretch; padding: 1rem 0; } .not-found-copy, .not-found-card-grid { position: relative; z-index: 1; } .not-found-copy { background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-2xl); backdrop-filter: blur(10px); } .not-found-copy h1 { max-width: 12ch; margin-bottom: 1rem; } .not-found-copy p { max-width: 54ch; font-size: 1.05rem; } .not-found-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; } .not-found-card-grid { display: grid; gap: 1rem; } .not-found-card { display: flex; flex-direction: column; justify-content: space-between; gap: 0.8rem; min-height: 180px; padding: 1.75rem; border-radius: 20px; background: linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(27, 38, 59, 0.96)); box-shadow: var(--shadow-xl); border: 1px solid rgba(255, 255, 255, 0.08); } .not-found-card strong { color: white; font-family: 'Outfit', 'Inter', sans-serif; font-size: 1.35rem; line-height: 1.2; } .not-found-card span:last-child { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; } .not-found-card:hover { transform: translateY(-4px); border-color: rgba(244, 127, 32, 0.5); } .not-found-card-label { display: inline-flex; align-items: center; width: fit-content; padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(244, 127, 32, 0.14); color: var(--primary); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; } @media (max-width: 980px) { .inventory-overview-grid, .not-found-shell { grid-template-columns: 1fr; } } @media (max-width: 640px) { .not-found-copy { padding: 2rem; } .not-found-actions .button { width: 100%; } .inventory-overview-media { min-height: 220px; } } /* ─── 404 Not Found ──────────────────────────────────────── */ .nf-hero { position: relative; min-height: calc(100vh - 72px); background: var(--secondary); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 5rem 1.5rem; } /* Subtle brick-grid line texture */ .nf-bg-grid { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.03) 39px, rgba(255, 255, 255, 0.03) 40px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px); pointer-events: none; } /* Radial teal glow sitting behind the 404 number */ .nf-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 700px; height: 500px; background: radial-gradient(ellipse at center, rgba(26, 140, 140, 0.18) 0%, transparent 70%); pointer-events: none; } /* Content container */ .nf-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 860px; width: 100%; } /* "ERROR" eyebrow */ .nf-eyebrow { display: inline-block; font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); background: rgba(244, 127, 32, 0.12); padding: 4px 14px; border-radius: 20px; margin-bottom: 1.25rem; border: 1px solid rgba(244, 127, 32, 0.25); } /* Giant "404" with gradient */ .nf-number { font-family: 'Outfit', sans-serif; font-size: clamp(7rem, 20vw, 14rem); font-weight: 800; line-height: 0.9; letter-spacing: -4px; background: linear-gradient(135deg, #1a8c8c 0%, #f47f20 55%, #e0a060 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: 1.75rem; animation: nf-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; } @keyframes nf-pop { from { opacity: 0; transform: scale(0.88); } to { opacity: 1; transform: scale(1); } } /* Heading */ .nf-heading { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; color: var(--white); max-width: 500px; line-height: 1.3; margin: 0 auto 1rem; animation: nf-fade-up 0.5s 0.15s ease both; } /* Subtext */ .nf-sub { color: rgba(255, 255, 255, 0.5); font-size: 1.05rem; line-height: 1.75; max-width: 420px; margin: 0 auto 2.5rem; animation: nf-fade-up 0.5s 0.25s ease both; } @keyframes nf-fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } } /* CTA row */ .nf-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; animation: nf-fade-up 0.5s 0.35s ease both; } /* Ghost button for dark background */ .nf-btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.6rem; border-radius: 6px; border: 1px solid rgba(255, 255, 255, 0.25); color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; } .nf-btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); color: var(--white); background: rgba(255, 255, 255, 0.07); } /* Glasscard grid */ .nf-cards { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; width: 100%; animation: nf-fade-up 0.5s 0.45s ease both; } .nf-card { flex: 1 1 260px; max-width: 360px; display: flex; flex-direction: column; gap: 0.75rem; padding: 1.75rem 1.75rem 1.5rem; border-radius: 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); text-align: left; text-decoration: none; color: var(--white); position: relative; overflow: hidden; transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease; } /* Teal-to-orange top accent slides in on hover */ .nf-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #1a8c8c, var(--primary)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; } .nf-card:hover::before { transform: scaleX(1); } .nf-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.2); } /* Pill label */ .nf-card-label { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); background: rgba(244, 127, 32, 0.12); border: 1px solid rgba(244, 127, 32, 0.2); padding: 3px 10px; border-radius: 20px; align-self: flex-start; } .nf-card-title { display: block; font-size: 1.05rem; font-weight: 700; line-height: 1.35; color: var(--white); } .nf-card-cta { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); transition: color 0.2s ease; margin-top: auto; } .nf-card:hover .nf-card-cta { color: var(--primary); } /* Mobile */ @media (max-width: 540px) { .nf-number { letter-spacing: -2px; margin-bottom: 1.25rem; } .nf-actions { flex-direction: column; align-items: stretch; } .nf-btn-ghost, .nf-actions .button { text-align: center; justify-content: center; } .nf-cards { flex-direction: column; } .nf-card { max-width: 100%; } }