/* ==========================================================================
   GENERAL SETUP & HEADER
   ========================================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background: #f4f4f4; 
    color: #333; 
    line-height: 1.6;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    color: #000; 
    line-height: 1;
}

.logo img { height: 50px; width: auto; margin-right: 15px; }

.logo span.name { 
    font-size: 1.4rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.logo span.suffix { font-weight: 300; color: #666; }

.main-nav a { 
    margin-left: 30px; 
    text-decoration: none; 
    color: #666; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    font-weight: 600; 
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover { color: #000; }

/* ==========================================================================
   GALLERY GRID (INDEX PAGE)
   ========================================================================== */
.gallery-wrapper { 
    padding: 40px 5%; 
    max-width: 1600px; 
    margin: 0 auto;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
}

.art-item {
    position: relative;
    background: #fff;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.art-item:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
}

.art-item img { 
    width: 100%; 
    height: 450px; 
    object-fit: cover; 
    display: block;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.art-item:hover .overlay { opacity: 1; }
.overlay-text { color: #fff; text-align: center; }

/* ==========================================================================
   INSTALLS PAGE (SINGLE COLUMN BEAUTIFICATION)
   ========================================================================== */
.install-container {
    max-width: 850px; /* Constrains width for a professional look */
    margin: 60px auto;
    padding: 0 20px;
}

.install-grid {
    display: flex;
    flex-direction: column; /* Force single column */
    gap: 60px; /* Space between the "cards" */
}

.install-card {
    background: #fff;
    padding: 25px; /* Creates the "frame" effect around the image */
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.install-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.install-card img {
    width: 100%;
    height: auto;
    max-height: 600px; /* Keeps images from being overwhelming */
    object-fit: contain; /* Shows the full photo without cropping */
    background: #fafafa;
    display: block;
    margin-bottom: 20px;
}

.install-info {
    text-align: center;
    padding: 10px 0;
}

.install-info h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.install-info p {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   PIECE PAGE, ABOUT, & CONTACT
   ========================================================================== */
.piece-container {
    display: flex;
    min-height: 80vh;
    padding: 40px 5%;
    gap: 60px;
    align-items: center;
}

.piece-image { flex: 2; text-align: center; }
.piece-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.piece-details { flex: 1; max-width: 400px; }
.inquiry-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   ABOUT PAGE BEAUTIFICATION
   ========================================================================== */
.about-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Slightly more room for text */
    gap: 80px;
    align-items: start; /* Align to top for a cleaner start */
}

.about-image {
    background: #fff;
    padding: 15px; /* The "Frame" effect */
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); /* Optional: subtle artistic touch */
    transition: filter 0.5s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* Entrepreneur Note Styling */
.entrepreneur-note {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #000;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.entrepreneur-note h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Mobile Adjustments for About Page */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 40px auto;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

/* Update these sections in style.css */

/* Update these specific blocks in style.css */

.contact-container {
    max-width: 600px;
    margin: 80px auto; /* Centers the container and adds top/bottom spacing */
    padding: 0 20px;
    text-align: center; /* Centers the H1, P, and inline buttons */
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px; /* Slightly narrower for better aesthetics */
    margin: 40px auto; /* This is the key for centering the form itself */
    text-align: left; /* Keeps the text you TYPE inside the boxes left-aligned */
}

/* Add this to center the success message block */
.status-msg.success {
    background: #fff; /* Matches your clean white look */
    padding: 40px;
    margin: 0 auto;
    display: inline-block; /* Allows text-align: center to affect it */
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
    .art-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
    .about-grid, .piece-container { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    .art-grid { grid-template-columns: 1fr; }
    .install-card { padding: 15px; }
}