body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(180deg, #0c0c0c, #1a1a1a);
    color: #e5e3e2;
    line-height: 1.6;
}
nav {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 30px;
    z-index: 1000;
}

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

.logo img {
    height: 80px;
}

.nav-links a {
    color: #e5e3e2;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000000;
    background: linear-gradient(45deg, #ffffff, #221f20);
    border-radius: 20px;
    padding: 6px 20px;
    border-color: #e5e4e2;
}

.navbar-toggler{
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #221f20);
    border-color: #e5e4e2;
}

header {
    text-align: center;
    margin-top: 84px;
    padding: 120px 20px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/illustration3.png') center/cover no-repeat;
    color: #e5e3e2;
}
header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
header p {
    font-size: 1.3em;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    padding: 8px 20px;
    /*background: linear-gradient(45deg, #f0f0f0, #c0c0c0);*/
    background: linear-gradient(45deg, #ffffff, #221f20);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    border-color: #e5e4e2;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.btn:hover {
    /*background: linear-gradient(45deg, #c0c0c0, #999);*/
    background: linear-gradient(-45deg, #ffffff, #221f20);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border-color: #e5e4e2;
}
section {
    max-width: 1200px;
    margin: auto;
}
section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid #e5e3e2;
    display: inline-block;
    padding-bottom: 10px;
}
.service-category {
    margin-bottom: 50px;
}
.service-category h3 {
    font-size: 2em;
    color: #f5f5f5;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.service-category ul {
    list-style: none;
    padding: 0;
}
.service-category ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1em;
}
.gallery img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background-color: #222;
    color: #e5e3e2;
}
.contact-form button {
    cursor: pointer;
    background: linear-gradient(45deg, #f0f0f0, #c0c0c0);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}
.contact-form button:hover {
    background: linear-gradient(45deg, #c0c0c0, #999);
}
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9em;
    color: #888;
    background-color: #111;
    margin-top: 50px;
}
.message-luxe {
    background: linear-gradient(135deg, #e5e4e2, #d4d1cc);
    color: #000;
    padding: 20px 30px;
    border-left: 5px solid #221f20;
    border-radius: 12px;
    margin: 20px auto 20px;
    max-width: 800px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }
    section h2 {
        font-size: 2em;
    }
    .service-category h3 {
        font-size: 1.5em;
    }
    header {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        margin: 10px 0;
    }
}

[id] {
    scroll-margin-top: 100px;
}
