:root {
    --primary: #1a1a1a;
    --secondary: #c5a059;
    --accent: #d4af37;
    --bg: #ffffff;
    --text: #333333;
    --muted: #666666;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

/* Header & Nav */
header {
    background: var(--primary);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 30px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
}

.btn:hover {
    background: var(--secondary);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* About & Contact */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid var(--border);
    width: 100%;
}

/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: var(--primary);
    color: white;
    padding: 20px;
}

.main-content {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day-slot {
    background: white;
    border: 1px solid var(--border);
    padding: 10px;
    min-height: 150px;
}

.time-slot {
    padding: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 3px;
}

.slot-available { background: #e8f5e9; border-left: 3px solid #4caf50; }
.slot-pending { background: #fff3e0; border-left: 3px solid #ff9800; }
.slot-booked { background: #ffebee; border-left: 3px solid #f44336; }
.slot-blocked { background: #eeeeee; border-left: 3px solid #9e9e9e; }

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}
