/* ==========================================
   URBAN JACKET STUDIO - GLOBAL STYLESHEET
   Style: Industrial Exaggerated Minimalism
   ========================================== */

/* Typography Import */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Epilogue:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette */
    --color-bg: #09090B;            /* Zinc 950 - Pitch Black */
    --color-bg-alt: #18181B;        /* Zinc 900 - Dark Utility Gray */
    --color-fg: #FAFAFA;            /* Zinc 50 - High Contrast Off-White */
    --color-fg-muted: #A1A1AA;      /* Zinc 400 - Muted Slate */
    --color-primary: #FFFFFF;       /* Stark White */
    --color-secondary: #27272A;     /* Zinc 800 */
    --color-accent: #F97316;        /* Safety Orange */
    --color-accent-hover: #EA580C;
    --color-border: #27272A;        /* Zinc 800 */
    --color-glass-bg: rgba(9, 9, 11, 0.85);
    --color-glass-border: rgba(255, 255, 255, 0.04);
    
    /* Font Families */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Epilogue', sans-serif;
    
    /* Layout Variables */
    --transition-spring: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.25s ease-in-out;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-soft-hover: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-fg);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    background-color: var(--color-bg);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #27272A;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-fg);
}

h1 {
    font-size: clamp(3rem, 10vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -0.01em;
    border-left: 6px solid var(--color-accent);
    padding-left: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

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

/* Scroll-Reveal Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Industrial Utility Cards */
.luxury-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 0; /* Brutalist sharp corners */
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-spring);
    position: relative;
}

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

/* Stretched Link overlay */
.blog-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.2rem 0;
    background: rgba(9, 9, 11, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-fg);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-fg-muted);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-fg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* CTA Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0; /* Sharp corners */
    border: none;
    cursor: pointer;
    transition: var(--transition-spring);
    text-align: center;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-fg);
    border: 1px solid var(--color-fg);
}

.btn-secondary:hover {
    background-color: var(--color-fg);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-fg);
    transition: var(--transition-smooth);
}

/* Section Spacing */
section {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: left;
    margin-bottom: 6rem;
}

.section-title p {
    color: var(--color-fg-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12rem;
    gap: 6rem;
}

.hero-content {
    flex: 1.1;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    margin-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-fg-muted);
    margin-bottom: 3.5rem;
    max-width: 580px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image-wrapper {
    flex: 0.9;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: var(--transition-spring);
}

.hero-image-container img:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

.feature-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    border: 1px solid var(--color-border);
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-spring);
}

.luxury-card:hover .feature-img-wrapper img {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.feature-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.4rem 1rem;
    background-color: var(--color-bg);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.luxury-card h3 {
    margin-bottom: 0.8rem;
}

.luxury-desc {
    color: var(--color-fg-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
    padding: 8rem 2rem;
    text-align: center;
}

.newsletter-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 5rem;
    border: 2px solid var(--color-border);
}

.newsletter-box h2 {
    border-left: none;
    padding-left: 0;
}

.newsletter-box p {
    font-size: 1.1rem;
    color: var(--color-fg-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
    color: var(--color-fg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
    background-color: var(--color-bg-alt);
}

/* Blog Previews */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    display: inline-block;
}

.blog-excerpt {
    color: var(--color-fg-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.blog-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-fg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link:hover {
    color: var(--color-accent);
    gap: 0.8rem;
}

/* Footer Section */
footer {
    background-color: #050507;
    border-top: 1px solid var(--color-border);
    padding: 7rem 2rem 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 400;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-col p {
    color: var(--color-fg-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--color-fg-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--color-fg-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

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

/* Cookie Consent Popup */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 440px;
    z-index: 10000;
    background-color: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    padding: 2.5rem;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--color-fg-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
}

.cookie-btns .btn {
    flex: 1;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
}

/* Compliance Content Page Layout */
.compliance-page, .blog-page {
    padding-top: 12rem;
    max-width: 900px;
}

.compliance-page h1, .blog-page h1 {
    margin-bottom: 1.5rem;
    line-height: 0.9;
}

.compliance-page .meta-info, .blog-page .meta-info {
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-content, .blog-content {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 5rem 4rem;
    box-shadow: var(--shadow-soft);
}

.legal-content h2, .blog-content h2 {
    font-size: 2rem;
    margin: 3.5rem 0 1.2rem;
    line-height: 1;
    border-left: 4px solid var(--color-accent);
    padding-left: 1rem;
}

.legal-content p, .blog-content p {
    color: var(--color-fg-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul, .blog-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--color-fg-muted);
}

.legal-content li, .blog-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Single Blog Specifics */
.blog-featured-img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 4rem;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 3rem;
    margin: 3.5rem 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    background: #141416;
    line-height: 1.3;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
        min-height: auto;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image-wrapper {
        order: 0;
        width: 100%;
        max-width: 460px;
    }
    
    .hero-image-container {
        height: 400px;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 7rem 1.5rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-alt);
        padding: 3rem 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        gap: 2rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content, .blog-content {
        padding: 3rem 2rem;
    }
    
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 0;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
}
