/* 1. Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. FORCE THE BODY TO CENTER EVERYTHING */
body {
    background-color: #ffffff !important;
    font-family: 'Arial', sans-serif;
    color: #000000;
    
    /* These 4 lines force all content into the absolute horizontal center */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
    justify-content: flex-start !important;
    
    width: 100% !important;
    min-height: 100vh;
    padding: 20px 15px !important;
}

/* 3. Site Wrapper limits the max-width on desktop */
.site-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 600px !important; /* Adjust this if you want it wider on desktop */
    margin: 0 auto !important;
}

/* 4. OVERRIDE ALL INDIVIDUAL ELEMENT POSITIONS */
#companylogo, #businessdescription, #introphoto, #paintingsbanner, #availablesession1photo, #sellingpoints, #office
#howitworks, #map, 
#requestcatalogue, #oremail, 
#artytable, #bottombanner {
    /* Blows away old desktop coordinates */
    position: static !important;
    top: auto !important;
    left: auto !important;
    
    /* Forces elements to center text and fill width safely */
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 25px auto !important;
    text-align: center !important;
    font-size: 1rem !important;
}

/* 5. Force all images to scale down and stay centered */
img, .site-wrapper img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important; /* Centers image inside its container */
}

/* 6. Text-specific exceptions (re-add left alignment if needed) */
#availablesession1text, #office {
    text-align: left !important;
}

/* 7. Typography Styles */
h1 {
    color: #D1AB56;
    margin-bottom: 15px;
    text-align: center;
}

#companylogo {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem !important;
    font-weight: bold;
}

a.bottombanner:link {
    color: green;
    text-decoration: none;
}

#bottombanner {
    display: inline-block !important; /* Tells the browser to strictly shrink the page height to this item */
    padding: 20px !important;
    color: white !important;
    width: 100% !important;
    max-width: 370px !important; 
    background-color: #161B1E !important;
    
    /* Forces the item to have absolutely zero whitespace underneath it */
    margin-bottom: -80px !important;
    vertical-align: bottom !important; 
}
/* ==========================================
   8. CONTACT FORM ALIGNMENT & RESPONSIVE STYLES
   ========================================== */

/* Centers the form container inside your layout */
form, .contact-form {
    display: flex !important;
    flex-direction: column !important; /* Stacks inputs vertically */
    align-items: center !important;    /* Centers inputs horizontally */
    width: 100% !important;
    max-width: 500px !important;       /* Keeps the form reading-width on desktop */
    margin: 30px auto !important;      /* Creates balanced vertical spacing */
    padding: 15px !important;
    background-color: #ffffff !important; /* Blends seamlessly into your white layout */
}

/* Forces form paragraphs, labels, and helper divs to center */
form p, form div, form label {
    width: 100% !important;
    text-align: center !important;     /* Centers field titles/labels */
    margin-bottom: 15px !important;    /* Space between different form fields */
    font-family: 'Arial', sans-serif !important;
    font-size: 0.95rem !important;
}

/* Fixes input fields so they stay centered and scale down on phones */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="url"],
form textarea,
form select {
    display: block !important;
    width: 100% !important;            /* Fits cleanly inside the 500px maximum width */
    max-width: 100% !important;        /* Stops fields from running off screen edges on mobile */
    margin: 8px auto 0 auto !important; /* Centers input boxes below their text labels */
    padding: 12px !important;          /* Increases tap target size for easier typing on phones */
    font-size: 1rem !important;        /* Crucial: Prevents iOS from auto-zooming on tap */
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    box-sizing: border-box !important; /* Locks calculation to include padding inside width */
}

/* Custom dimensions for textareas/message fields */
form textarea {
    min-height: 120px !important;      /* Gives users plenty of room to write */
    resize: vertical !important;       /* Prevents stretching the layout sideways */
}

/* Centers and formats the Submit Button */
form input[type="submit"],
form button {
    display: block !important;
    width: auto !important;
    min-width: 180px !important;       /* Clean, finger-friendly button width */
    margin: 15px auto 0 auto !important; /* Centers button inside the column layout */
    padding: 12px 24px !important;     /* Generous padding for a modern app-like feel */
    background-color: #161B1E !important; /* Matches your bottom banner background exactly */
    color: #ffffff !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: background-color 0.2s ease;
}

/* Hover dynamic matching your header gold */
form input[type="submit"]:hover,
form button:hover {
    background-color: #D1AB56 !important; /* Flips color to gold when a mouse hovers over it */
}

/* Force the contact form heading and subheading to align left */
.quote-form-container h2,
.quote-form-container p.subheading {
    text-align: left !important;

}

#businessdescription, 
.businessdescription {
    width: 100% !important;
    max-width: 350px !important;       
    margin: 0 auto 20px auto !important; 
    text-align: centre !important;       
    line-height: 1.5 !important;       

    /* ADD THESE TWO LINES TO SHRINK THE TEXT SIZE */
    font-size: 12px !important;        /* Makes the text smaller and crisper */
    font-weight: normal !important;    /* Un-bolds the text if it looks too heavy */

}

#office {
    margin-bottom: 25px !important; 
}

#how-it-works, 
#howitworks {
    margin-bottom: 25px 
}

#companylogo {
    margin-bottom: 10px !important; 
}

#requestcatalogue {
    margin-bottom: -30px !important;
}

      /* Submit Button with static gold color */
        .submit-btn {
            display: block;
            width: 100%;
            max-width: 180px;           /* Clean, elegant left-aligned button */
            background-color: #D1AB56 !important;
            color: #ffffff !important;
            border: none;
            border-radius: 8px;
            padding: 14px;
            font-family: 'Arial Bold', sans-serif;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 25px 0 0 0;         /* Left-aligned margin rules */
            transition: none;           /* Removed transition since color is static */
        }

        /* Forces the hover state to stay the exact same gold */
        .submit-btn:hover {
            background-color: #D1AB56 !important;
            color: #ffffff !important;
        }
    </style>
</head>
<body>

}


