:root {
    /* Dental Minimal Palette */
    --primary: #40E0D0;
    /* Turquoise/Mint */
    --secondary: #2C3E50;
    /* Dark Slate */
    --bg-body: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-main: #2C3E50;
    --text-light: #7F8C8D;

    /* Typography */
    --font-main: 'DM Sans', sans-serif;

    /* Spacing */
    --container-width: 1000px;
    /* More compact */
    --header-height: 70px;

    /* Elements */
    --radius: 20px;
}

[data-theme="soft-blue"] {
    --primary: #5DADE2;
    /* Soft Blue */
}

[data-theme="lavender"] {
    --primary: #AF7AC5;
    /* Lavender */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.nav-btn {
    background: var(--text-main);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-btn:hover {
    opacity: 0.9;
}

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 4rem;
}

/* Schedule & Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.schedule-box {
    background: var(--bg-alt);
    padding: 3rem;
    border-radius: var(--radius);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-row:last-child {
    border-bottom: none;
}

/* Reviews */
.reviews {
    text-align: center;
    margin-bottom: 6rem;
}

.stars {
    color: #FFC107;
    /* Star yellow */
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card {
    background: white;
    border: 1px solid #eee;
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 300px;
    }
}