/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #555;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
}

/* Navbar */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1920x800') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    position: relative;
}

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

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #fff;
}

.hero-section .lead {
    color: #f8f9fa;
}


/* Softer general aesthetic */
img {
    border-radius: 15px;
}

/* Service Cards & Featured Boxes */
.service-card {
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px; /* Softer corners */
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Softer, more pronounced shadow */
}

.service-card .card-title {
    color: #B58A66; /* A soft, elegant color */
}

/* Styles for the featured services on the homepage */
.featured-service-box {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.featured-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-service-box h4 i {
    color: #B58A66;
    margin-right: 10px;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 15px;
}

.featured-service-box p {
    font-style: italic;
    color: #666;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.service-card ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-card .card-footer {
    background-color: #fff;
    border-top: none;
    padding: 1rem 1.5rem;
}


/* Buttons */
.btn-primary {
    background-color: #B58A66;
    border-color: #B58A66;
    padding: 12px 35px; /* Slightly larger padding */
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 50px; /* Rounded pill shape */
}

.btn-primary:hover {
    background-color: #a37b5a;
    border-color: #a37b5a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: #555;
    border-color: #555;
    border-radius: 50px; /* Rounded pill shape */
}

/* About Section */
#about img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Contact Section */
#contact .form-control {
    padding: 12px;
}

/* Footer */
footer {
    background-color: #222 !important;
}

.header-background {
    background: url('https://img.freepik.com/free-photo/elegant-wedding-background-with-white-roses_23-2148948574.jpg') no-repeat center center;
    background-size: cover;
    padding: 1rem 0;
    position: relative;
}

.header-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.header-background .container {
    position: relative;
    z-index: 2;
}

.header-background .navbar-brand,
.header-background .nav-link {
    color: #333 !important;
    font-weight: bold;
}

.footer-background {
    background: url('https://img.freepik.com/free-photo/dark-gray-abstract-background-for-product-showcase_1258-105281.jpg') no-repeat center center;
    background-size: cover;
    padding: 4rem 0;
    position: relative;
    color: #fff;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.footer-background .container {
    position: relative;
    z-index: 2;
}

.footer-background p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-background img {
    border: 3px solid #fff;
    border-radius: 5px;
}

/* Floating Contact Menu */
.floating-contact-menu {
    display: none; /* Hidden by default */
}

@media (max-width: 767px) {
    .floating-contact-menu {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px 0;
        text-align: center;
        z-index: 1000;
        display: none; /* ensure it's hidden on mobile by default */
        transition: opacity 0.3s;
        opacity: 0;
    }

    .floating-contact-menu.show-floating-menu {
        display: block;
        opacity: 1;
    }

    .floating-contact-menu a {
        color: #fff;
        font-size: 24px;
        margin: 0 15px;
        transition: color 0.3s;
    }

    .floating-contact-menu a:hover {
        color: #B58A66; /* Match primary button color */
    }
}

