/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63384; /* Floral Pink */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d63384;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1519225495810-751783d9cf07?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;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #d63384;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background: #b02a6b;
    transform: translateY(-3px);
}

/* Services */
.services {
    padding: 5rem 10%;
    text-align: center;
    background: #fdf2f8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Contact */
.contact {
    padding: 5rem 10%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.info, .map {
    flex: 1;
    min-width: 300px;
}

.info p {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero-content h1 { font-size: 2rem; }
}
