/* Master Scapes - Premium Craftsmanship Design */

/* Variables */
:root {
    --primary-dark: #0a0e14;
    --secondary-dark: #121820;
    --accent-gold: #c5a059;
    --accent-gold-glow: rgba(197, 160, 89, 0.4);
    --text-light: #f5f5f7;
    --text-gray: #a1a1a6;
    --glass-bg: rgba(20, 26, 32, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 100px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--primary-dark);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), #fff);
    z-index: 2000;
    transition: width 0.1s ease;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    height: var(--nav-height);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.header.scrolled .logo {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-gold);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
        url('images/UltimateBackyardPage_Form-scaled-1920x1283.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: var(--nav-height);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--primary-dark), transparent);
}

.hero-content {
    max-width: 900px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #fff, #a1a1a6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: clamp(20px, 4vw, 40px);
    color: var(--accent-gold);
    margin-bottom: 30px;
    letter-spacing: 4px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 50px;
    font-weight: 200;
    color: var(--text-gray);
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 22px 55px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 10px 30px var(--accent-gold-glow);
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title {
    font-size: clamp(36px, 6vw, 70px);
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--accent-gold);
    margin-bottom: 80px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Services Section */
.services {
    background: var(--primary-dark);
}

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

.service-card {
    background: var(--secondary-dark);
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

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

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}

.service-card h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 300;
}

/* About Section */
.about {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: 0;
    transition: var(--transition);
}

.about-image:hover::before {
    top: -10px;
    left: -10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    filter: sepia(20%) contrast(1.1);
}

.founder-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent-gold);
    color: #000;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transform: rotate(2deg);
}

.about-lead {
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 18px;
    font-weight: 300;
}

.about-text strong {
    color: var(--text-light);
    font-weight: 500;
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: var(--primary-dark);
    border-left: 3px solid var(--accent-gold);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: #1a232e;
    border-left-width: 6px;
}

.feature-icon {
    font-size: 32px;
    line-height: 1;
}

.feature-text h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Gallery Section */
.gallery {
    background: var(--primary-dark);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 14, 20, 0.95));
    color: var(--text-light);
    padding: 60px 40px 40px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 10px;
    font-size: 26px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-overlay p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    background: var(--secondary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
}

.contact-info h3,
.contact-form h3 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.info-item {
    margin-bottom: 40px;
}

.info-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info-item p,
.info-item a {
    color: var(--text-gray);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}

.info-item a:hover {
    color: #fff;
}

.contact-form {
    background: var(--primary-dark);
    padding: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--glass-border);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--secondary-dark);
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #1a232e;
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0 50px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
    margin-bottom: 50px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 25px;
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 300;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .about-grid,
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {

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

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 80px;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        gap: 0;
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        height: calc(100vh - var(--nav-height));
        padding: 40px 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        font-size: 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 0;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        height: 50px;
    }
}