/* Global Styles */
:root {
    --baby-purple: #B19CD9;  /* Soft purple */
    --lavender: #E6E6FA;     /* Lavender */
    --cream: #FFF5E1;        /* Cream */
    --white: #FFFFFF;        /* White */
    --dark-grey: #333333;    /* Dark grey */
    --luxury-grey: #666666;  /* Refined grey */
    --black: #000000;        /* Elegant black */
}

/* Body Styling */
body {
    font-family: 'Playfair Display', serif; /* Luxury font */
    margin: 0;
    padding: 0;
    background-color: var(--cream); /* Light background */
    color: var(--dark-grey); /* Dark grey text for contrast */
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: var(--baby-purple); /* Rich purple for headings */
    margin: 20px 0;
}

/* Header Styles */
header {
    background-color: var(--baby-purple); /* Soft purple */
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--lavender);
}

/* Hero Section Styling */
.hero {
    position: relative;
    height: 80vh;
    background-image: url('images/hero-image.jpg'); /* Hero image */
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.8rem;
    margin-top: 10px;
}

.cta-btn {
    background-color: var(--baby-purple);
    padding: 15px 40px;
    font-size: 1.2rem;
    color: var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--lavender);
    transform: scale(1.05);
}

/* Services Preview */
.services-preview {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--lavender); /* Lavender background */
}

.services-preview h2 {
    font-size: 3.5rem;
    color: var(--baby-purple);
    margin-bottom: 40px;
}

.services-preview .service {
    display: inline-block;
    width: 30%;
    margin: 20px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-preview .service:hover {
    transform: translateY(-10px);
}

.services-preview .service h3 {
    font-size: 2rem;
    color: var(--baby-purple);
    margin-bottom: 20px;
}

.services-preview .service p {
    font-size: 1.1rem;
    color: var(--luxury-grey);
    margin-bottom: 20px;
}

/* Section with Text */
.cta-section {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background-color: var(--white);
    color: var(--dark-grey);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section a {
    text-decoration: none;
    color: var(--baby-purple);
    font-size: 18px;
    padding: 12px 25px;
    border: 2px solid var(--baby-purple);
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-section a:hover {
    background-color: var(--baby-purple);
    color: var(--white);
}

/* Footer Section */
footer {
    background-color: var(--baby-purple);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 1.2rem;
}

footer .socials a {
    color: var(--white);
    margin: 0 15px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .socials a:hover {
    color: var(--lavender);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .services-preview .service {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
