/* 
  Browns Plumbing Co - THE FLUID PULSE
  "Once in a Lifetime" Interactive Luxury Build
*/

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;700;900&family=Outfit:wght@200;300;400;600&display=swap');

:root {
    --primary: #f59e0b;
    /* Amber Gold */
    --bg: #050505;
    --surface: #0f0f0f;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
.heading-unbounded {
    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

/* Hero Section */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.4) saturate(1.2);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg) 90%);
    z-index: -1;
}

/* Interactive Cards */
.pulse-card {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pulse-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: 0.5s;
}

.pulse-card:hover::before {
    left: 100%;
}

.pulse-card:hover {
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.02);
    transform: translateY(-10px);
}

/* Portfolio */
.portfolio-item {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.15);
}

/* Form Styling */
.input-field {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    width: 100%;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    outline: none;
    transition: all 0.3s;
}

.input-field:focus {
    border-color: var(--primary);
}

/* Button UI */
.btn-fluid {
    position: relative;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-fluid:hover {
    background: var(--primary);
    color: var(--bg);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

