/**
 * File: /var/www/vhosts/blingmaven.com/web/site/style.css
 * Purpose: Global stylesheet for Bling Maven website.
 *
 * Features:
 * - Provides consistent typography and layout across all pages.
 * - Defines reusable styles for logo, headers, sections, and forms.
 * - Uses a refined color palette with gold accents to reflect luxury branding.
 * - Ensures accessibility and readability with clear contrasts.
 * - Supports multilingual text rendering with UTF-8 fonts.
 *
 * Author: Bling Maven Development
 * Date: 2026-02-25
 */

/* --------------------------------------------------------------------------
   GLOBAL STYLES
   -------------------------------------------------------------------------- */
body {
    font-family: "Georgia", serif;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
}

h1, h2 {
    color: #a67c00; /* gold accent */
    margin-bottom: 20px;
}

p {
    margin: 15px 0;
}

/* --------------------------------------------------------------------------
   LOGO
   -------------------------------------------------------------------------- */
.logo {
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

/* --------------------------------------------------------------------------
   INTRO SECTION
   -------------------------------------------------------------------------- */
.intro {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-size: 1.1em;
}

/* --------------------------------------------------------------------------
   CONTACT LINK
   -------------------------------------------------------------------------- */
.contact a {
    display: inline-block;
    background-color: #a67c00;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.contact a:hover {
    background-color: #8c6a00;
}

/* --------------------------------------------------------------------------
   FORM STYLES
   -------------------------------------------------------------------------- */
form {
    background-color: #fff;
    border: 2px solid #a67c00;
    border-radius: 10px;
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
}

button {
    background-color: #a67c00;
    color: #fff;
    border: none;
    padding: 12px 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #8c6a00;
}

/* --------------------------------------------------------------------------
   MULTILINGUAL SUPPORT
   -------------------------------------------------------------------------- */
html {
    font-size: 100%;
}

body, input, textarea, button {
    font-family: "Georgia", "Times New Roman", serif;
    unicode-bidi: embed;
}

