/* Industrial Modern Workshop Style */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto+Mono:wght@400;500&family=Inter:wght@300;400;700&display=swap');

:root {
    --warm-off-white: #f4f1eb;
    --charcoal: #2b2b2b;
    --wood-accent: #8b5e3c;
    --burnt-orange: #d97706;
    --deep-black: #111111;
    --border-color: #d1d1d1;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warm-off-white);
    color: var(--deep-black);
    line-height: 1.6;
}

h1, h2, h3, .btn, .logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mono {
    font-family: 'Roboto Mono', monospace;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--charcoal);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--deep-black);
}

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

nav a {
    text-decoration: none;
    color: var(--deep-black);
    margin-left: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--burnt-orange);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    margin-bottom: 80px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    background: var(--charcoal);
    color: white;
    padding: 60px;
    max-width: 800px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-accent-line {
    width: 100px;
    height: 6px;
    background: var(--burnt-orange);
    margin-bottom: 30px;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-phone {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--burnt-orange);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--burnt-orange);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 10px solid white;
    box-shadow: 10px 10px 0 var(--charcoal);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--charcoal);
    color: white;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #444;
}

.service-item {
    background: var(--charcoal);
    padding: 40px;
    text-align: center;
    transition: background 0.3s;
}

.service-item:hover {
    background: #333;
}

.service-icon {
    font-size: 2rem;
    color: var(--burnt-orange);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Why Choose Us */
.features {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--burnt-orange);
    width: 60px;
}

.feature-text h3 {
    font-size: 1.5rem;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masonry-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--warm-off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--charcoal);
    color: white;
    padding: 40px;
    border-left: 5px solid var(--burnt-orange);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--burnt-orange);
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 100px 0;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    box-shadow: 10px 10px 0 var(--charcoal);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: #f9f9f9;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--charcoal);
}

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--charcoal);
    color: white;
}

/* Map */
.map-container {
    width: 100%;
    height: 500px;
    margin-bottom: 80px;
}

/* Footer */
footer {
    background: var(--deep-black);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--burnt-orange);
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .about, .contact, .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-content { padding: 30px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
