:root {
    --primary-color: #f17b21; /* Orange from old theme */
    --secondary-color: #333333; /* Dark/Black from footer */
    --accent-color: #d96a1a; /* Darker orange for hover */
    --text-color: #444444;
    --light-bg: #fdf7f2; /* Very light orange tint for cards */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }

/* Top Bar Info Labels */
.top-bar-label {
    color: #a65c19;
    font-weight: 600;
    text-decoration: underline;
}

/* Navbar Style Matching Old Theme */
header {
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    padding: 0 !important;
}

.nav-link {
    color: #fff !important;
    background-color: var(--primary-color);
    border-right: 1px solid rgba(255,255,255,0.2);
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-radius: 0 !important;
}

.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.nav-justified .nav-item:last-child .nav-link {
    border-right: none;
}

.nav-link:hover, .nav-link.active, .show > .nav-link {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    color: #fff !important;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-bottom: 1px solid #444;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
}

/* News Ticker */
.news-ticker {
    background-color: #fff !important;
    border-bottom: 1px solid #ddd;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.news-ticker .badge {
    background-color: #e34e4e !important;
    border-radius: 0;
}

/* Sidebar Widget - Enquiry Form */
.widget {
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
}

.widget-title {
    font-weight: 700;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: #f8f8f8;
    border-left: 5px solid #c0392b; /* Red accent from Enquiry label */
    color: #c0392b;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background-color: #e34e4e; /* Reddish button from old theme */
    border-color: #c0392b;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #a93226;
}

/* Footer */
footer {
    background-color: #000 !important;
    color: #fff;
    font-size: 0.85rem;
}

/* Section Headings */
.section-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Card Styling */
.card.bg-light {
    background-color: var(--light-bg) !important;
    border: 1px solid #f9e2d0 !important;
}

.table thead.bg-primary {
    background-color: var(--primary-color) !important;
}


/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=Modern+Hotel+Management+College+Campus+with+students+professional+environment&image_size=landscape_16_9');
    background-size: cover;
    background-position: center;
    color: #fff;
}
