/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   HEADER (SAFE FOR ALL PHONES)
================================ */
.main-header {
    background: #555;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

/* NAV MENU */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    color: #fff;
    font-size: 16px;
}

.nav-menu ul li a:hover {
    color: #ffcc00;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #555;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .nav-menu.show {
        display: block;
    }
}

/* ===============================
   HERO SECTION (TOP IMAGE)
================================ */
.hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Josefin Slab', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #f1f1f1;
}

/* ===============================
   SERVICES SECTION
================================ */
.services {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-family: 'Josefin Slab', serif;
    font-size: 2.5rem;
    color: #e57373;
    margin-bottom: 15px;
}

.services-description {
    color: #666;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
}

/* SERVICE CARDS */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0 8px;
    color: #e57373;
}

.service-card p {
    padding: 0 15px 20px;
    color: #666;
    font-size: 0.95rem;
}

/* ===============================
   OFFERS SECTION
================================ */
.offers {
    background: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

.offers h2 {
    font-family: 'Josefin Slab', serif;
    font-size: 2.5rem;
    color: #e57373;
    margin-bottom: 15px;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.offer-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.offer-card h3 {
    color: #e57373;
    margin-bottom: 10px;
}

.offer-card p {
    color: #666;
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* ===============================
   SCROLL TO TOP
================================ */
#movetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e57373;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero {
        height: 55vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
}
/* BOOK APPOINTMENT */





.booking-section {
    padding: 60px 15px;
    background: gray;
}

.booking-card {
    max-width: 550px;
    background: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #e57373;
}

.booking-card label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.booking-card button {
    width: 100%;
    margin-top: 20px;
    background: #e57373;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}

.alert-success {
    background: #d1ffe7;
    color: #065f46;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.alert-error {
    background: #ffe1e1;
    color: #b91c1c;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

/* DASHBOARD */
.dashboard-section {
    padding: 60px 15px;
    background: #f9f9f9;
}

.dashboard-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dashboard-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.dashboard-card h3 {
    color: #e57373;
    margin-bottom: 10px;
}

.dashboard-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
}

.dash-btn {
    display: inline-block;
    margin-top: 10px;
    background: #e57373;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.dash-btn.outline {
    background: transparent;
    color: #e57373;
    border: 1px solid #e57373;
    margin-left: 5px;
}

.logout-wrapper {
    text-align: center;
    margin-top: 40px;
}

.logout-btn {
    background: #d32f2f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
}










