@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --obsidian: #050505;
    --charcoal: #121212;
    --charcoal-light: #1e1e1e;
    --electric-blue: #00d2ff;
    --safety-orange: #ff5e00;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom spotlight */
}

body {
    background-color: var(--obsidian);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Custom Cursor Spotlight */
#cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, rgba(5,5,5,0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

#cursor-spotlight.hovered {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.15) 0%, rgba(5,5,5,0) 70%);
}

#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--electric-blue);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: transform 0.1s;
}

#cursor-dot.hovered {
    transform: translate(-50%, -50%) scale(2);
    background-color: var(--safety-orange);
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; position: relative; display: inline-block; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--electric-blue);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 4px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--safety-orange);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.header-icons {
    color: #fff;
}

/* Layout & Sections */
main {
    padding-top: 100px;
    min-height: 100vh;
}

.section {
    position: relative;
    padding: 10rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
    filter: saturate(0) contrast(1.2);
    transition: filter 1s;
}

.hero:hover .hero-bg {
    filter: saturate(1) contrast(1.2);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--electric-blue);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--obsidian);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-dark {
    border-color: var(--safety-orange);
    color: var(--safety-orange);
}

.btn-dark::before {
    background-color: var(--safety-orange);
}

/* Asymmetric Grid & Parallax Layers */
.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    position: relative;
}

.layer-deep {
    z-index: 1;
    grid-column: 1 / 8;
    transform: translateY(50px);
}

.layer-mid {
    z-index: 2;
    grid-column: 6 / 13;
    margin-top: -100px;
}

.layer-front {
    z-index: 3;
    grid-column: 2 / 10;
    margin-top: 50px;
    background: rgba(18, 18, 18, 0.8);
    padding: 3rem;
    backdrop-filter: blur(10px);
    border-left: 2px solid var(--electric-blue);
}

/* Product Cards (Cinematic) */
.cinematic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.product-card {
    width: 400px;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-img-wrapper {
    overflow: hidden;
    height: 500px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.2);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 100%);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-price {
    color: var(--electric-blue);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Text Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

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

/* Forms */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-bottom-color: var(--safety-orange);
}

label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    transition: 0.3s ease all;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

input:focus ~ label, input:valid ~ label,
textarea:focus ~ label, textarea:valid ~ label {
    top: -10px;
    font-size: 0.7rem;
    color: var(--safety-orange);
}

textarea {
    min-height: 100px;
    resize: none;
}

/* Footer */
footer {
    background: #020202;
    padding: 6rem 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    border-top: 1px solid #222;
}

footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--safety-orange);
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 0.8rem;
}

footer a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a:hover {
    color: #fff;
}

/* Images in general content */
.content-img {
    width: 100%;
    filter: grayscale(50%);
    transition: filter 0.5s;
}

.content-img:hover {
    filter: grayscale(0%);
}

.value-block {
    padding: 3rem;
    background: var(--charcoal-light);
    border-top: 2px solid transparent;
    transition: border-color 0.4s, transform 0.4s;
}

.value-block:hover {
    border-color: var(--electric-blue);
    transform: translateY(-10px);
}

.value-icon {
    width: 40px;
    height: 40px;
    color: var(--safety-orange);
    margin-bottom: 1.5rem;
}

.article-card {
    background: var(--charcoal);
    padding: 2rem;
    position: relative;
    border-left: 1px solid transparent;
    transition: border-color 0.4s;
}

.article-card:hover {
    border-color: var(--electric-blue);
}

.article-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 1.5rem;
    filter: brightness(0.7);
    transition: filter 0.4s;
}

.article-card:hover .article-img {
    filter: brightness(1);
}

.article-date {
    font-size: 0.8rem;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
