
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #333;
}
header .hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/salon.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 1.5s ease-in-out;
}
header .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}
header .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.btn {
    background: #d4af37;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}
.btn:hover {
    background: #b8912c;
}
section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}
h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.service:hover {
    transform: translateY(-5px);
}
.contact ul {
    list-style: none;
    padding: 0;
}
.contact ul li {
    padding: 5px 0;
}
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
