@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-padding-top: 2rem;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #333;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.heropage {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 2;
}

.text-overlay {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    margin-right: 15px;
}

.text-overlay h1 {
    color: #333;
    font-size: 50px;
    margin-bottom: 10px;
}

.text-overlay p {
    font-size: 25px;
    color: #666;
    margin: 20px 0;
}

.heropage a {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    background-color: #e0a0a0;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.heropage a:hover {
    background-color: #d48a8a;
    transform: translateY(-2px);
}

/* Container Styles */
.container {
    max-width: auto;
    margin: 5% auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    margin-right: 15px;
}

/* Par2 Section - Made Smaller */
.container2 {
    margin-bottom: 30px;
    max-width: auto;
    margin: 3% auto;
    padding: 0px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    margin-right: 15px;
}

.text-content, .text-content2, .text-content3 {
    text-align: center;
}

h1, h2 {
    color: #333;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h1 { font-size: 35px; }
h2 { font-size: 28px; }

.side-image {
    width: 200px;
    border-radius: 10px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.container2 ul {
    text-align: left;
    margin: 15px 0;
}

.container2 li {
    padding: 12px 20px;
    border-bottom: 2px solid rgba(224, 160, 160, 0.2);
    font-size: 18px;
    transition: all 0.3s ease;
}

.container2 li:hover {
    background: rgba(255, 192, 203, 0.1);
    transform: translateX(10px);
}

.container2 hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0a0a0, transparent);
    margin: 10px 0;
}

/* Contact Section */
.container3{
    margin-bottom: 20px;
}
.icon-cont {
    color: #e0a0a0;
    font-size: 36px;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-cont:hover {
    color: #d48a8a;
    transform: translateY(-2px);
}
.inst{
    background-color: #e0a0a0;
    color: #fff;
}
/* Working Hours Section */
.working-hours {
    max-width: auto;
    margin-left: 15px;
    margin-right: 15px;
    margin: 0;
    padding: 0px;
    position: relative;
}

.hours-container {
    margin-left: 15px;
    margin-right: 15px;
    max-width: auto;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 0px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.sparkle-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #e0a0a0;
}

.sparkle-divider .line {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, #e0a0a0, transparent);
    margin: 0 15px;
}

.sparkle-divider i {
    font-size: 20px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 2px solid rgba(224, 160, 160, 0.2);
    font-size: 20px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(255, 192, 203, 0.1);
    transform: translateX(10px);
}

.day-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    
    .text-overlay h1 { font-size: 40px; }
    
    .side-image {
        width: 150px;
    }

    .container2 li {
        font-size: 16px;
        padding: 10px 15px;
    }

    .schedule-item {
        font-size: 16px;
        padding: 12px 15px;
    }

    .hours-content h2 {
        font-size: 28px;
    }

    .sparkle-divider .line {
        width: 60px;
    }

    .sparkle-divider i {
        font-size: 16px;
    }
}

/* Utility Classes */
.tel-btn {
    font-size: 18px;
}

a, p, span, div, li {
    font-family: 'Playfair Display', serif;
}
/*menu */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    color: #e0a0a0;
    font-weight: bold;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e0a0a0;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
}

.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.nav-link:hover {
    color: #e0a0a0;
}

/* Hamburger menu animation */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        position: fixed;
        right: 20px;
        display: block;
    }

    .navigation {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        transition: 0.3s ease-in-out;
        padding: 20px;
    }

    .navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: normal;
        justify-content: flex-start;
        height: 100%;
        gap: 40px;
        padding-top: 40px;
    }

    .nav-link {
        font-size: 1.4rem;
        width: 100%;
        text-align: right;
        padding: 15px;
    }

    .nav-link:hover {
        background-color: rgba(224, 160, 160, 0.1);
    }}
