/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    text-align: left;
    overflow-x: hidden;
}

/* Header (Grey Banner at Top) */
header {
    background: #333;
    color: white;
    padding: 15px;
    width: 100vw;
    box-sizing: border-box;
}

/* Navigation (Left Justified) */
.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-left: 20px;
}

.nav-links li {
    display: block;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

/* Email (All Lowercase) */
.contact-info p {
    text-transform: lowercase;
}

/* Hero Section (Parallax on Desktop, Full Image on Mobile) */
.hero {
    background: url('living-room.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Disable Parallax for Mobile */
@media screen and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* Hero Text */
.hero-content h2 {
    font-size: 55px;
    color: white;
    margin: 0;
    font-weight: bold;
}

.hero-content h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
    font-weight: normal;
}

/* All Buttons - Green */
.hero-content .btn,
.btn.inventory,
.btn.quote,
.btn.move {
    background: green;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    border-radius: 5px;
    transition: 0.3s;
    width: auto;
    min-width: 180px;
    display: inline-block;
    text-align: center;
}

.hero-content .btn:hover,
.btn.inventory:hover,
.btn.quote:hover,
.btn.move:hover {
    background: darkgreen;
}

/* Service Page Description Text (Above Buttons) */
.page-description {
    font-size: 22px;
    font-weight: normal;
    color: black;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 50px;
}

/* Service Boxes (Desktop: In Line | Mobile: Stacked) */
.service-boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box {
    width: 30%;
    padding: 20px;
    background: white;
    text-decoration: none;
    color: black;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.service-box:hover {
    transform: scale(1.05);
}

/* Stack Service Boxes on Mobile */
@media screen and (max-width: 768px) {
    .service-boxes {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }
}

/* Furniture Image Grid */
.image-gallery {
    padding: 20px;
    max-width: 90%;
    margin: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* Oscar.jpg Styling */
.oscar-image {
    text-align: center;
    margin-top: 20px;
}

.oscar-image img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 8px;
}

/* About Section */
.about-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
}

/* Meet the Team Section */
.team {
    text-align: center;
    padding: 50px 20px;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.team-member {
    text-align: center;
    width: 200px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes images circular */
    object-fit: cover;
    border: 3px solid #333;
}

.team-member h3 {
    margin: 10px 0 5px;
    font-size: 20px;
}

.team-member p {
    font-size: 16px;
    color: gray;
}

/* Responsive: Stack team members on mobile */
@media screen and (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .hero-content .btn {
        font-size: 18px;
        padding: 14px 28px;
    }

    header {
        width: 100vw;
    }

    .service-box h3 {
        font-size: 18px;
    }

    .oscar-img {
        max-width: 80%;
        height: auto;
        display: block;
        margin: auto;
    }

    .page-description {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero {
        height: 100vh;
        width: 100vw;
        background-size: cover;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .hero-content .btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    header {
        width: 100vw;
    }

    .page-description {
        font-size: 16px;
    }
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 10px;
    background: #222;
    color: white;
    text-align: center;
}
