:root {
    --primary-color: #f8e1e7; /* وردي خافت */
    --accent-color: #d4af37;  /* ذهبي */
    --text-dark: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #fffafb;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    margin-right: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(248, 225, 231, 0.7), rgba(255, 255, 255, 0.5)), 
                url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content span {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 25px;
    transition: 0.3s;
}

/* Services */
.services {
    padding: 80px 10%;
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Gallery - Mobile Optimized */
.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px;
    scroll-snap-type: x mandatory;
}

.photo-item {
    min-width: 80%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    scroll-snap-align: center;
}

/* Responsive for Desktop */
@media (min-width: 768px) {
    .photo-item {
        min-width: 30%;
    }
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

footer {
    background: #333;
    color: white;
    padding: 50px;
    text-align: center;
}