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

body {
    font-family: Georgia, serif;
    background: #111;
    color: gold;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. NAVIGATION BAR */
.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: #ffc845;
}

.nav-grid {
    display: grid;
    grid-template-columns: max-content auto max-content;
    align-items: center;
    width: 100%;
    padding: 2px 25px;
    background: linear-gradient(to bottom,
            #055b05 20%,
            #024202 60%,
            #012901 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-left ul,
.nav-right ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 4px;
    padding: 3px;
}

.nav-grid ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 12px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-grid ul li a:hover {
    background-color: #000;
}

.logo {
    height: 120px;
    max-width: 500px;
    object-fit: contain;
    width: auto;
    max-height: 120px;
}

.logo2 {
    height: 200px;
    max-width: 400px;
    object-fit: contain;
}

/* 3. HERO SECTION */
.hero-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 90%;
    padding: 0 10px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 15px;
    display: inline-block;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 12px;
    line-height: 1.5;
}

.hero-content a {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ffd700, #ffcc33);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-content a:hover {
    background: #fff;
    transform: scale(1.08);
}

/* 4. SLIDESHOWS */
.slideshow {
    position: relative;
    width: 100%;
    height: 850px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slideshow2 {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* 5. CONTENT BOXES */
#about h2 {
    color: darkgoldenrod;
    font-size: 28px;
    text-align: center;
}

.box,
.box5 {
    background-color: #fff;
    color: #000;
    border: 5px solid gold;
    padding: 45px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    max-width: 95%;
    text-align: center;
}


.serviceBox {
    background-color: #fff;
    color: #000;
    border: 5px solid gold;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    max-width: 80%;
    text-align: center;
}


.serviceBox h2 {
    color: darkgoldenrod;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.serviceBox .role {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 5px;
}

.serviceBox .price {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
}

.serviceBox .description {
    font-size: 1.05rem;
    color: #222;
}

/* 6. GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.gallery-item {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .3s ease;
}

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

/* Lightbox styles */
.lightbox {
    display: none;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.box3 {
    background-color: #fff;
    color: #000;
    border: 4px solid gold;
    margin: 120px auto 200px auto;
    /* more balanced spacing */
    max-width: 600px;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    z-index: 5;
}

.box3 h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

/* CONTACT FORM STYLING */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin: 12px 0;
    border: none;
    border-radius: 10px;
    background: #333;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px gold;
    background: #222;
}

/* Align the two small inputs evenly */
.input-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.input-row input {
    flex: 1;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    background: gold;
    color: #000;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #000;
    color: gold;
    box-shadow: 0 0 10px gold;
}

/* RESPONSIVE FIXES */
@media (max-width: 700px) {
    .box3 {
        width: 85%;
        padding: 30px 20px;
    }

    .input-row {
        flex-direction: column;
    }

    .contact-form button {
        font-size: 18px;
    }
}

/* =========================================================
   8. FOOTER - ENHANCED SIMPLE STYLING
   This design focuses on centering social links cleanly.
   ========================================================= */
.footer {
    background: #111;
    /* Slightly softer black */
    color: #f0f0f0;
    /* Softer white */
    font-family: Arial, sans-serif;
    padding: 30px 0 0 0;
    /* Top padding, zero side/bottom padding */
}

/* --- Main Content Container (Social Links) --- */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%;
    /* Vertical padding for breathing room */
    display: flex;
    /* Use flexbox for simple horizontal centering */
    flex-direction: column;
    align-items: center;
    /* Center items horizontally */
    text-align: center;
    border-top: 1px solid gold;
    /* Remove the heavy border, use a subtle gold top line */
    border-bottom: 1px solid #333;
    /* Separator before the copyright bar */
}

/* Grouping and spacing for the social links */
.footer-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* Space between Facebook and Instagram links */
    flex-wrap: wrap;
    /* Allows links to wrap on small screens */
    margin-bottom: 15px;
    /* Space below the links */
    font-size: 1.1rem;
}

.footer-item {
    /* Style for the container holding the icon/text */
    padding: 5px 0;
}

.footer-icon a {
    color: gold;
    /* Highlight the link text in gold */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    margin-left: 5px;
    /* Slight separation from "Facebook:" text */
}

.footer-icon a:hover {
    color: #fff;
    /* White on hover for better contrast */
    text-decoration: underline;
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    background: #000;
    padding: 15px 5%;
    font-size: 0.85rem;
    color: #777;
    /* Softer gray for copyright text */
    text-align: center;
}

/* RESPONSIVENESS */
@media (max-width: 550px) {
    .footer-info {
        flex-direction: column;
        /* Stack the social links vertically */
        gap: 10px;
    }

    .footer-info,
    .footer-icon {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 12px 5%;
        font-size: 0.75rem;
    }
}

/* 9. BLURRED BACKGROUND GRID */
.photo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    z-index: -5;
    overflow: hidden;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.photo-row img {
    width: 80%;
    height: 80%;
    justify-self: center;
    align-self: center;

    object-fit: cover;
    filter: blur(10px) brightness(0.6);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1.1);
    }
}

/* ================================
   IMPROVED MOBILE NAV + HERO
   ================================ */
@media (max-width: 900px) {

    /* NAVIGATION */
    .nav-grid {
        grid-template-columns: 1fr;
        padding: 10px 0;
        text-align: center;
        gap: 10px;
    }

    .nav-left ul,
    .nav-right ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .nav-grid ul li a {
        padding: 10px 12px;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .logo {
        height: 70px;
    }

    /* HERO SECTION */
    .hero-content {
        top: 55%;
        transform: translate(-50%, -50%);
        padding: 12px;
        max-width: 95%;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        padding: 8px 12px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 8px 12px;
        line-height: 1.4;
    }

    .hero-content a {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .slideshow {
        height: 500px;
    }
}

/* ================================
   VERY SMALL SCREENS (iPhone SE)
   ================================ */
@media (max-width: 550px) {

    /* NAVIGATION */
    .nav-grid {
        padding: 5px 0;
    }

    .nav-grid ul li a {
        font-size: 12px;
        padding: 8px 10px;
    }

    .logo {
        height: 55px;
    }

    /* HERO */
    .hero-content {
        top: 50%;
        transform: translate(-50%, -45%);
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 1.2rem;
        padding: 6px 10px;
    }

    .hero-content p {
        font-size: .9rem;
        padding: 6px 10px;
        max-width: 90%;
    }

    .slideshow {
        height: 430px;
    }
}

/* ===================================
   EXTREME SMALL (390px and under)
   =================================== */
@media (max-width: 390px) {

    /* NAVIGATION */
    .logo {
        height: 50px;
        margin-bottom: 8px;
    }

    .nav-grid ul li a {
        font-size: 11px;
        padding: 6px 8px;
    }

    /* HERO */
    .hero-content {
        top: 48%;
        transform: translate(-50%, -40%);
        padding: 8px;
    }

    .hero-content h1 {
        font-size: 1rem;
        padding: 5px 8px;
    }

    .hero-content p {
        font-size: .85rem;
        padding: 5px 8px;
        line-height: 1.3;
    }

    .hero-content a {
        font-size: .85rem;
        padding: 8px 16px;
    }

    .slideshow {
        height: 380px;
    }
}

@media (max-width: 700px) {
    .serviceBox {
        /* Reduce padding significantly so the box isn't so tall */
        padding: 25px 15px;

        /* Make the border slightly thinner for small screens */
        border-width: 3px;

        /* Ensure it fits nicely without touching edges */
        width: 90%;
        max-width: 450px;
        /* Prevents it from getting too wide on tablets */

        /* Adjust spacing around the box */
        margin: 25px auto;
    }

    /* Scale down the Service Title */
    .serviceBox h2 {
        font-size: 1.5rem;
        /* Was 2.2rem */
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    /* Scale down the Role */
    .serviceBox .role {
        font-size: 1.1rem;
        /* Was 1.5rem */
        margin-bottom: 5px;
    }

    /* Scale down the Price */
    .serviceBox .price {
        font-size: 1rem;
        /* Was 1.2rem */
        margin-bottom: 12px;
    }

    /* Scale down and tighten the Description */
    .serviceBox .description {
        font-size: 0.95rem;
        /* Was 1.05rem */
        line-height: 1.4;
        /* Better readability for small text */
    }
}