/* =======================================================
   === SHARED LAYOUT STYLES (Navbar, Footer, Fonts) ===
   ======================================================= */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lato:wght@400;700&display=swap');

/* Global Font */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* === Navbar Styles === */
.navbar-brand img {
    height: 40px;
}

/* Dark Navbar Background */
.bg-footer-color {
    background-color: #212121 !important; 
}

/* Nav Links (Gold #9E8A2F) */
.nav-link-custom-color {
    color: #9E8A2F !important; 
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent; 
    border-radius: 0 !important;          
    transition: border-color 0.2s ease;   
}

.nav-link-custom-color:hover,
.nav-link-custom-color:focus,
.nav-link-custom-color.active {
    border-bottom-color: #9E8A2F; 
}

/* Dropdown Symbol */
.dropdown-toggle::after {
    color: #9E8A2F;
    vertical-align: middle;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #9E8A2F !important;
    border-radius: 0 !important; 
    margin-top: 0; 
}

.dropdown-item-custom-color {
    color: #ffffff !important; 
}

.dropdown-item-custom-color:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important; 
}

/* Log-in Button */
.btn-custom {
    background-color: #9E8A2F !important; 
    color: #ffffff !important;            
    border: none;
    padding: 0.45rem 1rem;
    font-weight: bold;
    border-radius: 3px;
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
    gap: 0.5rem;                
}

.btn-custom:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important;
}

/* Footer Styles */
.footer {
    color: #f8f9fa;
    background-color: #212121;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer a.text-white-50 {
    transition: color 0.3s ease;
}

.footer a.text-white-50:hover {
    color: #ffffff !important; 
}

/* Footer Social Icons */
.social-icon-btn {
    width: 50px; 
    height: 50px;
    background-color: #9E8A2F; 
    color: #ffffff;            
    font-size: 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease; 
    border: none;              
}

.social-icon-btn:hover {
    background-color: #7a6b24; 
    color: #ffffff;            
}

/* =========================================
   === CONTACT PAGE SPECIFIC STYLES ===
   ========================================= */

/* Header Banner (Full Screen) */
.header-banner-contact {
    height: 100vh; 
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Opacity restored to 0.7 (darker) to match gallery visual effect */
.header-banner-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    z-index: 1; 
}

.header-banner-contact .container {
    z-index: 1;
}

.header-banner-contact h1 {
    position: relative;
    z-index: 1;
    font-size: 5rem; 
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.header-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #ddd;
}

/* Typography */
.section-title {
    color: #9E8A2F; 
    font-weight: 700;
}

.contact-heading {
    /* Uses inherited body font stack (same as header) */
    font-size: 2.5rem;
    /* Reduced font weight to 700 (standard bold) */
    font-weight: 700; 
    color: #9E8A2F; /* Changed color to #9E8A2F */
}

/* Contact Info Icons */
.icon-box {
    width: 50px;
    height: 50px;
    background-color: #9E8A2F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Contact Info Text Alignment Tweak */
.col-lg-5 p.text-muted {
    margin-bottom: 0 !important; /* Removes default paragraph spacing */
}

/* Contact Page Specific Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #9E8A2F;
    color: #9E8A2F;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #9E8A2F;
    color: white;
}

/* Form Styling */
.contact-form-wrapper {
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.form-label {
    /* Uses inherited body font */
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
}

.custom-input {
    border-radius: 5px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.custom-input:focus {
    border-color: #9E8A2F;
    box-shadow: 0 0 0 0.25rem rgba(158, 138, 47, 0.25); 
    background-color: #fff;
}

/* Submit Button Styling */
.btn-cta {
    background-color: #9E8A2F;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #7d6d25;
    color: white;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .header-banner-contact h1 {
        font-size: 3rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer .text-center { text-align: left !important; }
    .footer .d-flex.justify-content-center { justify-content: flex-start !important; }
}   