:root {
    --primary: #0F172A;
    /* Slate 900 */
    --secondary: #334155;
    /* Slate 700 */
    --cta: #0369A1;
    /* Sky 700 */
    --cta-hover: #0284c7;
    /* Sky 600 */
    --bg: #F8FAFC;
    /* Slate 50 */
    --surface: #ffffff;
    --text: #020617;
    /* Slate 950 */
    --text-muted: #64748b;
    /* Slate 500 */
    --border: #e2e8f0;
    /* Slate 200 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Public Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-family: "Libre Bodoni", serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Navigation - Modern & Right Aligned in Header */
.main-nav ul {
    display: flex;
    gap: 0.5rem;
}

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    color: #cbd5e1;
    /* Slate 300 */
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 300px;
    /* Reduced height */
    overflow: hidden;
    margin-bottom: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%);
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
}

.hero-title {
    font-family: "Libre Bodoni", serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-search button {
    background: var(--cta);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.hero-search button:hover {
    background: var(--cta-hover);
}

/* Main Layout Grid */
.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    border-left: 4px solid var(--cta);
    padding-left: 0.75rem;
    line-height: 1.2;
}

.card-more {
    font-size: 0.875rem;
    color: var(--cta);
    font-weight: 500;
}

.card-body {
    padding: 1rem 0;
    /* List styles usually handle padding */
}

/* List Items */
.list-item {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background-color: #f1f5f9;
}

.list-item a {
    color: var(--secondary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 75%;
}

.list-item:hover a {
    color: var(--cta);
}

.list-item .date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Sidebar Menu */
.sidebar-menu {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.sidebar-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background-color: var(--cta);
    color: white;
    /* Slide effect */
    padding-left: 2rem;
    background: linear-gradient(90deg, var(--cta) 0%, var(--cta-hover) 100%);
}

.sidebar-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Service Grid (Renamed from Service Icons) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(3, 105, 161, 0.15);
    border-color: rgba(3, 105, 161, 0.3);
}

.service-card-icon {
    font-size: 2rem;
    color: var(--cta);
    margin-bottom: 0.75rem;
}

.service-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Tabs */
.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    background-color: #f1f5f9;
}

.tab-btn {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--cta);
}

.tab-btn.active {
    color: var(--cta);
    border-bottom-color: var(--cta);
    background-color: var(--surface);
}

/* Specials Row */
.specials-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.special-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.special-card:hover {
    transform: scale(1.02);
}

.special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 0.75rem;
    color: white;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-brand h2 {
    color: white;
    font-family: "Libre Bodoni", serif;
    margin-bottom: 1rem;
}