/* Custom Styles for Shaun the Sweep Coming Soon Page */

body {
    /* The requested cream background color */
    background-color: #EBDECB;
    /* Full viewport height for centering */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Default dark text color */
    color: #343a40;
    /* Prevent body content from scrolling if not needed */
    margin: 0;
    padding: 20px; /* Add some padding for small screens */
}

.coming-soon-card {
    /* Bootstrap shadow for depth */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    /* Slightly rounded corners */
    border-radius: 1rem;
    margin-top:1em;
    /* Generous padding inside the card */
    padding: 3rem;
    /* White background for high contrast content */
    background-color: #ffffff;
    /* Max width on desktop */
    max-width: 600px;
    width: 100%; /* Ensure it takes full width on small screens (due to parent padding) */
    text-align: center;
    /* Smooth transition for hover effects (optional) */
    transition: transform 0.3s ease-in-out;
}

.coming-soon-card:hover {
    /* Subtle lift effect on hover */
    transform: translateY(-5px);
}

.logo-text {
    /* Bold, large font for the name */
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    /* A deep charcoal/soot color */
    color: #212529;
}

.slogan {
    /* Italicized and slightly smaller for the slogan */
    font-style: italic;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
}

.contact-info a {
    /* Bootstrap primary blue color for links */
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    /* Darker blue on hover */
    color: #0a58ca;
    text-decoration: underline;
}

.areas-list {
    /* Background for the areas list to make it stand out */
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.areas-list h5 {
    color: #495057;
    font-size: 1rem;
}