/* Table Styles for Appointments */
.appointments-table-container { background: white; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.app-table { width: 100%; border-collapse: collapse; text-align: left; }
.app-table th { background: black; color: white; padding: 12px; }
.app-table td { padding: 12px; border-bottom: 1px solid #eee; font-size: 14px; }
.app-table tr:hover { background: #fdfdfd; }

/* Contact Page Styles */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: white; padding: 40px; }
.contact-form-box input, .contact-form-box textarea {
    width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; outline: none;
}
.contact-form-box input:focus { border-color: var(--gold); }

@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }

:root {
    --gold:var(--footer);
    --dark: #333;
    --light: #f4f4f4;
    --white: #ffffff;
    --footer: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Roboto', sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Top Bar */
.top-bar { background: #eee; padding: 8px 0; font-size: 12px; }
.social-links a { margin-left: 10px; text-decoration: none; color: var(--dark); font-weight: bold; }

/* Header */
.main-header { background: var(--white); padding: 40px 0; text-align: center; }
.logo-area h1 { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--gold); letter-spacing: 5px; }
.subtitle { font-size: 20px; color: var(--gold); letter-spacing: 4px; }
.tagline { font-size: 11px; color: #888; margin-top: 10px; }

/* Navigation & Dropdown - Same Color */
.navbar { background: var(--gold); position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-links { list-style: none; display: flex; }
.nav-links li { position: relative; }
.nav-links li a { display: block; color: white; padding: 18px 15px; text-decoration: none; font-weight: bold; font-size: 13px; }
.nav-links li a:hover { background: rgba(0,0,0,0.1); }

.dropdown-content { display: none; position: absolute; background: var(--gold); min-width: 200px; border-top: 1px solid rgba(255,255,255,0.2); }
.dropdown-content li a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dropdown:hover .dropdown-content { display: block; }

/* Search Area */
.search-area input { padding: 8px 15px; border-radius: 20px; border: none; outline: none; }

/* News Content */
.main-body { padding: 40px 0; }
.section-title { margin-bottom: 30px; border-left: 5px solid var(--gold); padding-left: 15px; color: var(--dark); }

.featured-card { display: flex; background: var(--white); margin-bottom: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.featured-image { flex: 1; position: relative; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 20px; left: 20px; background: var(--gold); color: white; padding: 5px 15px; font-size: 12px; font-weight: bold; }
.featured-text { flex: 1; padding: 40px; }
.featured-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); margin: 15px 0; }
.read-more-btn { display: inline-block; background: var(--gold); color: white; padding: 12px 25px; text-decoration: none; font-weight: bold; }

/* News Grid */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.news-item { background: white; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: 0.3s; }
.news-item:hover { transform: translateY(-5px); }
.news-img-wrapper img { width: 100%; height: 180px; object-fit: cover; }
.news-content { padding: 20px; }
.category-tag { color: var(--gold); font-size: 11px; font-weight: bold; }
.news-content h3 { font-size: 18px; margin: 10px 0; color: var(--dark); }

/* Load More */
.load-more-container { text-align: center; margin: 50px 0; }
#load-more-btn { background: var(--gold); color: white; border: none; padding: 15px 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
#load-more-btn:hover { background: #948535; }

/* Footer */
.main-footer { background: var(--footer); color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.gold-text { color: var(--gold); margin-bottom: 20px; }
.footer-links h3, .footer-contact h3 { color: var(--white); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links a { color: #888; text-decoration: none; line-height: 2; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; font-size: 12px; }