/* 1. Import EB Garamond and Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com');

/* 2. Apply EB Garamond to all Headings (H1 to H6) */
h1, h2, h3, h4, h5, h6, 
.site-title, 
.entry-title {
    font-family: 'EB Garamond', serif !important;
    font-weight: 700; /* Bold for H1-H6 */
}

/* 3. Apply Montserrat to Paragraphs and General Body Text */
body, p, li, span, div {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400; /* Regular weight for paragraphs */
    line-height: 1.6; /* Improved readability for 2026 standards */
}

/* 4. Apply Montserrat to Links and Interactive Elements */
a {
    font-family: 'Montserrat', sans-serif !important;
    text-decoration: none;
}

/* 5. Styling for Bold, Italic, and Underline */
b, strong {
    font-weight: 700 !important;
}

i, em {
    font-style: italic !important;
}

u {
    text-decoration: underline !important;
}
/* Force Font Awesome to use the correct font family */
.fa, .fas, .fab, .far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Container Background and Text Color */
.haze-form-container {
   /* background-color: #000000;  Pure Black Background */
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    color: #ffffff; /* White Font Color */
    font-family: 'serif'; /* Matches your royal theme */
}

/* Column Structure */
.haze-column {
    flex: 1;
    min-width: 300px; /* Ensures responsiveness on mobile */
    display: flex;
    flex-direction: column;
}

/* Labels and Input Styling */
.haze-form-container label {
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.haze-form-container input, 
.haze-form-container textarea {
    background-color: #ffffff; /* Slightly lighter black for visibility */
    border: 1px solid #333333;
    color: #000000;
    padding: 12px;
    margin-bottom: 20px;
    width: 100%;
}

/* Placeholder text color */
.haze-form-container ::placeholder {
    color: #888888;
}

/* Right Column Textarea height to match left column */
.haze-form-container textarea {
    height: 185px; 
}

/* The Send Button */
.haze-form-container input[type="submit"] {
    background-color: #ffffff !important; /* White Button */
    color: #000000 !important; /* Black Text on Button */
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
    padding: 15px;
}

.haze-form-container input[type="submit"]:hover {
    background-color: #cccccc !important; /* Grey hover effect */
}
.footer-bottom{
    padding:10px;
}
p{
    color:#2F2F2F;
}
.nav-ul li.nv-active>.wrap .caret, .nav-ul li.nv-active>.wrap>a{
    color:#c5a059;
}

.nav-ul li:hover>.wrap .caret, .nav-ul li:hover>.wrap>a{
    color:#c5a059;
}