/* ========================================
   Godizee - Common Stylesheet
   All pages share these styles
   ======================================== */

:root {
    --primary-black: #0d0d0d;
    --secondary-black: #1a1a1a;
    --gold: #d4af37;
    --light-gold: #ffd700;
    --white: #ffffff;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

body {
    line-height: 1.7;
    background-color: #0d0d0d;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h2 {
    color: var(--light-gold);
    font-weight: 700;
    margin-bottom: 2rem;
}

strong {
    color: var(--light-gold);
}

.text-muted {
    color: #d4af37 !important;
}

/* ========================================
   SECTIONS & BACKGROUNDS
   ======================================== */

.section-padding {
    margin: 70px 0;
    background-color: #0d0d0d;
}

.section-padding p {
    color: var(--white);
}

.bg-light {
    background-color: #0d0d0d !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black)) !important;
}

/* ========================================
   HERO SECTION (HOME PAGE)
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('hero_bg.png') center/cover no-repeat;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-gold);
}

.hero p.lead {
    font-size: 1.2rem;
}

/* ========================================
   PAGE HEADER (INTERNAL PAGES)
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
    color: var(--white);
    margin: 70px 0;
}

.page-header h1 {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light-gold);
}

.page-header .lead {
    color: var(--white);
}

/* ========================================
   CARD STYLES - Generic Box Pattern
   Applied to: service-box, service-card, value-box, contact-box
   ======================================== */

.service-box,
.service-card,
.value-box,
.contact-box {
    border: 2px solid var(--gold);
    border-radius: 12px;
    height: 100%;
    transition: 0.4s ease;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-box {
    padding: 25px;
}

.service-card {
    padding: 30px;
}

.value-box {
    padding: 25px;
}

.contact-box {
    padding: 30px;
}

/* Box Hover Effect */
.service-box::before,
.service-card::before,
.value-box::before,
/* .contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
} */

.service-box:hover::before,
.service-card:hover::before,
.value-box:hover::before,
.contact-box:hover::before {
    opacity: 1;
}

.service-box:hover,
.service-card:hover,
.value-box:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--light-gold);
    transform: translateY(-5px);
}

.contact-box:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--light-gold);
}

/* Box Typography */
.service-box h4,
.service-box h5,
.service-card h4,
.value-box h3,
.value-box h5,
.contact-box h4 {
    color: #0d0d0d;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-box p,
.service-card p,
.value-box p,
.contact-box p {
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

/* Box Icons */
.service-box .icon,
.service-card .icon,
.value-box .icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.contact-box .icon {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    margin-right: 10px;
}

/* Contact Box Links */
.contact-box a {
    color: var(--gold);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-light {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    /*color: #0d0d0d;*/
    color: #ffffff;
    font-weight: 700;
}

.btn-light:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #0d0d0d;
}

.btn-outline-light {
    color: #ffffff;
    border-color: var(--light-gold);
    font-weight: 700;
}

.btn-outline-light:hover {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    color: #0d0d0d;
}

.btn-primary {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    color: #0d0d0d;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #0d0d0d;
}

/* ========================================
   FORM STYLES (Contact Page)
   ======================================== */

.form-label {
    color: #0d0d0d;
    font-weight: 600;
}

.form-control {
    border: 1px solid var(--gold);
    color: #1a1a1a;
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--light-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: #1a1a1a;
    background-color: var(--white);
}

.form-control::placeholder {
    color: #999;
}

/* ========================================
   Image Styles
   ======================================== */

.image-wrapper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: transparent; /* matches your theme */
}

.image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.image-wrapper:hover img {
    transform: scale(1.03);   /* Very subtle zoom */
}

/* .image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
} */

.image-wrapper img {
    /* filter: brightness(0.8) contrast(1.05) saturate(0.9); */
     filter: brightness(0.75) contrast(1.1); 
    /* box-shadow: 0 0 25px rgba(212,175,55,0.15); */
}
/* 
.image-fade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.1), 
                rgba(0,0,0,0.8));
} */

.section-dark {
     background: #000000; 
    padding: 80px 0;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--primary-black);
    color: var(--white);
    border-top: 3px solid var(--gold);
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

footer a:hover {
    color: var(--gold);
}

footer strong {
    color: var(--white);
}

footer .icon {
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 0%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0px;
    font-weight: 700;
    border: none;
}

/* ========================================
   NAVBAR (Inline Styles in HTML)
   Background: var(--primary-black)
   Shadow: 0 2px 10px rgba(212, 175, 55, 0.2)
   Logo Color: var(--light-gold)
   Logo Font Size: 1.5rem
   ======================================== */

/* ========================================
   MISC UTILITIES
   ======================================== */

.row justify-content-center .col-lg-10.text-center p {
    color: var(--white);
}
