body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f4f4f4;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

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

nav .logo {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #1E90FF;
}

.hero {
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    margin: 0;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 24px;
    color: #ddd;
    margin-top: 10px;
    z-index: 2;
    position: relative;
}

section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #222;
}

.service-list, .gallery, .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item, .testimonial-item {
    flex: 1 1 calc(45% - 20px);
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover, .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-item::before, .testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
    mix-blend-mode: overlay;
}

.service-item h3, .testimonial-item p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.photo {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
}

.photo img:hover {
    transform: scale(1.05);
    filter: brightness(80%);
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

footer a {
    color: #1E90FF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-media {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 0;
}

.social-media li a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-media li a:hover {
    color: #1E90FF;
}

/* Parallax effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    position: relative;
    z-index: 1;
}

.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.parallax h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
