:root {

    --primary: #ff7eb9;
    --secondary: #ffd1e8;
    --bg: #fff0f7;
    --card-bg: #ffffff;
    --text: #444;

}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
}


/* Loader */

.loader {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:var(--bg);
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition: 0.5s;
}

.loader img {
    width:100px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% { transform: scale(1); opacity: 0.5; }

    50% { transform: scale(1.1); opacity: 1; }

    100% { transform: scale(1); opacity: 0.5; }

}


/* Navbar */

.navbar {

    position: fixed;
    top:0;
    width:100%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #ffd1e8;

}

.nav-content {

    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;

}

.nav-logo {
    height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}


/* Hero */

.hero {

    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        180deg,
        #ffe3f2 0%,
        #fff0f7 100%
    );

}

.main-logo {
    width: 200px;
    margin-bottom: 20px;
}

.hero h1 {

    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);

}

.hero p {
    font-size: 18px;
    color:#666;
}


/* Button */

.btn-primary {

    display: inline-block;
    padding: 12px 35px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 25px;
    transition: 0.3s;

}

.btn-primary:hover {

    background:#ff5ca8;
    transform: scale(1.05);

}


/* Services Section */

.menu-section {
    padding: 100px 20px;
}

.section-title {

    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary);

}


/* Tabs */

.tabs-container {

    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;

}

.tab {

    padding: 8px 20px;
    border: 1px solid #ffd1e8;
    background: #fff;
    color: #777;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;

}

.tab.active {

    background: var(--primary);
    color: #fff;
    border-color: var(--primary);

}


/* Grid */

.menu-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;

}


/* Cards */

.item-card {

    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid #ffe1f0;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(255,126,185,0.1);

}

.item-card:hover {

    transform: translateY(-10px);
    border-color: var(--primary);

}

.item-card img {

    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;

}

.price {

    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-top: 10px;

}


/* Footer */

footer {

    padding: 50px 0;
    border-top: 1px solid #ffd1e8;
    text-align: center;
    color: #888;

}

.social-links {

    font-size: 24px;
    gap: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;

}

.social-links a {

    color: var(--primary);

}