/* Global Variables & Reset */
:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --bg-lighter: #252525;
    --accent-gold: #c5a059;
    /* Brushed Gold / Muted Gold */
    --accent-copper: #b87333;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    --transition: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.bg-text {
    position: absolute;
    font-size: 15rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.highlight {
    color: var(--accent-gold);
}

/* Top Bar */
.top-bar {
    background-color: #0c0c0c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--accent-gold);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

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

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

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Mobile Nav Active State */
.nav-active {
    transform: translateX(0%) !important;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Hero image with dark overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    overflow: hidden;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero.png') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.visible .hero-bg-zoom {
    transform: scale(1);
}

/* Optional: Add a subtle texture or noise overlay via CSS if desired, 
   but for "Industrial Minimal" clean dark gradients work well */
.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.3em;
    flex-wrap: wrap;
}

.reveal-text {
    display: block;
    overflow: hidden;
    height: 1.1em;
    margin-bottom: -0.1em;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible .reveal-text span {
    transform: translateY(0);
}

.reveal-text:nth-child(1) span {
    transition-delay: 0.2s;
}

.reveal-text:nth-child(2) span {
    transition-delay: 0.4s;
}

.reveal-text:nth-child(3) span {
    transition-delay: 0.6s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: -1;
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #121212;
}

.highlight-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-gold);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    height: 400px;
    width: 100%;
    background-color: #2a2a2a;
    /* Placeholder bg */
    border: 2px solid var(--accent-gold);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1353&q=80') center/cover no-repeat;
    filter: sepia(20%) grayscale(50%) contrast(1.2);
    /* Simple placeholder image from unsplash */
}

.about-content {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: left;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 25px;
}

.text-link {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.text-link:hover {
    gap: 15px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    min-width: 80px;
    text-align: right;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-lighter);
    padding: 30px;
    text-align: center;
    border-radius: 4px;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

.review-author {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    background-color: var(--accent-gold);
    color: #121212;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-family: var(--font-body);
    font-weight: bold;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--accent-gold);
    width: 20px;
}

.hours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hours h4 {
    margin-bottom: 20px;
}

.map-container {
    height: 400px;
    width: 100%;
    border: 1px solid var(--accent-gold);
    padding: 5px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    filter: grayscale(80%);
}

.gallery-item:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
    z-index: 10;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.footer-credit a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.socials a:hover {
    color: var(--accent-gold);
}

/* Responsive */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-copper));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Loading Overlay & Pulse */
body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 2000;
    transition: opacity 0.8s ease-out;
}

body:not(.loading)::before {
    opacity: 0;
    pointer-events: none;
}

@media (pointer: coarse) {
    /* Cursor removal styles previously here */
}

@media (max-width: 768px) {
    .bg-text {
        font-size: 8rem;
    }

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

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
        position: fixed;
        /* Keep fixed for mobile if needed, or stick with sticky */
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo {
        z-index: 1001;
        /* Ensure logo stays above if needed */
    }

    .burger {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-image::after {
        display: none;
        /* Simplify for mobile */
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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