
/* Dynamic Theme Colors from Database */
:root {
    --primary-color: #4e4b77;
    --secondary-color: #73aaf2;
    --accent-color: #8f0015;
}

/* Apply primary color */
.btn-primary,
.booking-widget .btn-search {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Hero gradient overlay */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Feature icons */
.feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* CTA Section */
section[style*="var(--primary-color)"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Links and accents */
a.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
}

/* Room price color */
.room-price {
    color: var(--primary-color) !important;
}

/* About card headers */
.about-card h3 {
    color: var(--primary-color) !important;
}

/* Section title accents */
.section-title h2 {
    color: #2c3e50;
}

/* Admin notice kept as is */
.admin-notice {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}