/* LUXBUILT Website Styles - Modern Black & White Design */
/* Color Scheme: Black (#000), White (#fff), Blue Accent (#12a3ec) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #12a3ec;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #12a3ec;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Image Carousel Background */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Fallback gradients if images don't load */
.hero-slide:nth-child(1) {
    background-image: url('images/hero/modern-exterior-luxury-home.jpg'), linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
}

.hero-slide:nth-child(2) {
    background-image: url('images/hero/luxury-living-interior.jpg'), linear-gradient(45deg, #000 0%, #2a2a2a 50%, #000 100%);
}

.hero-slide:nth-child(3) {
    background-image: url('images/hero/dramatic-living-room.jpg'), linear-gradient(-45deg, #000 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 4px;
    font-weight: 300;
    color: #fff;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    background: #fff;
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
}

.cta-button:hover {
    background: transparent;
    color: #12a3ec;
    border-color: #12a3ec;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #12a3ec;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.about-image {
    background-image: url('../images/about/owner.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #000;
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #12a3ec;
}

.service-slide {
    margin-bottom: 8rem;
    background: #fff;
    overflow: hidden;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.service-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    background: #fff;
}

.service-text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    position: relative;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #12a3ec;
}

.service-text p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    color: rgba(0, 0, 0, 0.7);
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
    font-weight: 400;
}

.service-features li::before {
    content: '—';
    color: #12a3ec;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Image Gallery */
.image-gallery {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: #12a3ec;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #12a3ec;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #fff;
    color: #000;
    text-align: center;
}

.contact h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #12a3ec;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
}

.phone-link {
    color: #12a3ec;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1.5rem;
}

.email-link{
    color: #12a3ec;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.phone-link:hover {
    color: #000;
}

/* Footer */
footer {
    background: #000;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content .subtitle {
        font-size: 1.4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-text {
        padding: 3rem 2rem;
    }

    .contact-info {
        gap: 3rem;
    }

    .about-text h2,
    .services h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .service-text h3 {
        font-size: 2.2rem;
    }

    .gallery-slide {
        height: 400px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle hover effects */
.service-slide:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Loading animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: slideIn 1s ease-out;
}