/* Google Fonts - Marcellus */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

/* Override primary color */
:root {
    --primary-color: #bf9d53;
}

/* Headers - Marcellus font + gold color */
h1, h2, h3, h4, h5, h6,
.pq-section-title h2,
.pq-section-title h5,
.footer-title,
.pq-blog-title,
.navbar-brand {
    font-family: 'Marcellus', serif !important;
}

h1, h2, h3, h4 {
    color: #bf9d53;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 175, 130, 0.3);
    z-index: 2;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    z-index: 3;
    opacity: 0.3;
}

.hero-watermark img {
    width: 180px;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-family: 'Marcellus', serif !important;
    font-size: 38px;
    font-weight: 700;
    color: #10213a;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: #10213a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    font-family: 'Marcellus', serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    color: #1a3a5c;
    text-decoration: none;
    background: #fcfaf7;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.hero-btn:hover {
    background: #1a3a5c;
    color: #fff;
    text-decoration: none;
}

/* Footer logo - white color */
.pq-footer-logo img {
    filter: brightness(0) invert(1);
}

.contact-form {
    padding: 0 0 100px 0;
}

#bpcms-contact-form {
    padding: 0 0 0 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400 !important;
    text-transform: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
    text-transform: none;
}

.pq-breadcrumb {
    top: 100px !important;
}

#menu-service-menu-footer li ul {
    padding-left: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-btn {
        font-size: 10px;
        padding: 10px 20px;
    }
    
    .hero-watermark img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


.menu-item a {
    text-transform: none !important;
}