/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff9fb;
}

a { text-decoration: none; color: inherit; }

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background: #d63384;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #d63384, #e685b5, #f8c8dc);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #d63384, #e685b5, #f8c8dc);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.page-header h1 { font-size: 2.2rem; margin-bottom: 0.4rem; }
.page-header p { font-size: 1rem; opacity: 0.9; }

/* ===== Button ===== */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #fff;
    color: #d63384;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #fce4ec;
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.about h2 {
    color: #d63384;
    margin-bottom: 1rem;
}

.about p {
    color: #555;
    margin-bottom: 1.5rem;
}

.hours {
    background: #fce4ec;
    padding: 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

.hours h3 {
    color: #d63384;
    margin-bottom: 0.5rem;
}

.hours p { margin: 0.2rem 0; }

/* ===== Highlights ===== */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border: 1px solid #f8c8dc;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-3px); }

.card h3 {
    color: #d63384;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card p { color: #666; font-size: 0.9rem; }

/* ===== Price List ===== */
.price-list {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(214, 51, 132, 0.1);
}

thead {
    background: #d63384;
    color: #fff;
}

th, td {
    padding: 0.85rem 1rem;
    text-align: left;
}

th { font-weight: 600; font-size: 0.95rem; }

tbody tr {
    border-bottom: 1px solid #fce4ec;
    transition: background 0.2s;
}

tbody tr:hover { background: #fff0f5; }

tbody tr:last-child { border-bottom: none; }

td:last-child {
    font-weight: 700;
    color: #d63384;
    white-space: nowrap;
}

.note {
    text-align: center;
    padding: 1rem 2rem 2rem;
    color: #888;
    font-size: 0.85rem;
}

/* ===== Contact ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    color: #d63384;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
}

.info-item {
    margin-bottom: 0.8rem;
    padding: 0.8rem 1rem;
    background: #fce4ec;
    border-radius: 8px;
    font-size: 0.9rem;
}

.info-item strong {
    display: block;
    color: #d63384;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem;
    border: 1px solid #f8c8dc;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d63384;
}

.form-status {
    margin-top: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 1.5rem;
    background: #d63384;
    color: #fff;
    font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 0.5rem; }
    .nav-links { gap: 0.8rem; }
    .hero h1 { font-size: 2rem; }
    .page-header h1 { font-size: 1.6rem; }
    .contact-section { grid-template-columns: 1fr; }
    th, td { padding: 0.6rem 0.5rem; font-size: 0.85rem; }
}
