/* Custom styles for Dra. Saira Rosales website */

:root {
    --text-main: #4a3c2d;
    --accent-burnt-orange: #d9534f;
    --accent-soft-orange: #e8772e;
    --accent-gold: #f7b733;
    --bg-cream: #FCFBF9;
    --bg-white: #FFFFFF;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
}



/* Custom logo sizing - UNCHANGED AS REQUESTED */
.nav-brand img {
    max-height: 60px;
    width: auto;
}

/* Footer logo styling */
.footer-section img {
    max-height: 180px;
    width: auto;
}

/* Header transparency adjustment */
.header-area {
    background: rgba(252, 251, 249, 0.95); /* bg-cream with opacity */
    backdrop-filter: blur(10px);
}

/* Text improvements */
.section-title h2 {
    color: var(--text-main);
}

.section-title p {
    color: var(--text-main);
    opacity: 0.85;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
}

/* Button enhancements */
.primary-btn {
    background-color: var(--accent-burnt-orange);
    color: var(--bg-white);
    border: 1px solid var(--accent-burnt-orange);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: var(--accent-soft-orange);
    border-color: var(--accent-soft-orange);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact info styling */
.single-address-col .div i {
    font-size: 2rem;
    color: var(--accent-burnt-orange);
    margin-bottom: 15px;
}

/* Alert styling for contact page */
.alert-info {
    background-color: rgba(247, 183, 51, 0.1); /* Light version of gold */
    border-color: var(--accent-gold);
    color: var(--text-main);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-burnt-orange);
}

.alert-info h5 {
    color: var(--text-main);
    margin-bottom: 15px;
}

/* Service & Feature cards enhancement */
.single-service, .single-feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
}

.single-service:hover, .single-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 60, 45, 0.1); /* Shadow with text-main color */
}

.single-service i {
    color: var(--accent-soft-orange);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-brand img {
        max-height: 50px;
    }
    
    .single-address-col {
        margin-bottom: 30px;
    }
    
    .alert-info {
        margin-bottom: 30px;
    }
}
