<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Unified Site CSS - Design Creations */

/* Root Variables for Easy Theme Updates */
:root {
    --primary-bg-color: #c7cfd7; /* Overall Background Color */
    --section-bg-color: #f0f0f0; /* Sections (Room, Contact, Legacy, Locations) */
    --button-bg: #92a0ae; /* Base Button Color */
    --button-bg-hover: #92a0ae; /* Hover Button Color */
    --text-color: #6f7c8f; /* Darker Text Color */
    --button-text: #c7cfd7; /* Button Text Color */
    --link-color: #92a0ae; /* Link Color (matches overall background) */
    --link-hover-color: #c7c7c7; /* Link Hover Color */
    --header-color: #6f7c8f; /* Darker Header and Subheader Color */
}

/* Global Resets */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-bg-color);
    color: var(--text-color);
    margin-top: 100px; /* Adjust this based on your header height */
    padding: 0;
    line-height: 1.5;
}

/* Fixed header example */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    height: auto; /* Let padding define height */
}

/* Hide details sections by default */
.details {
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.details.hidden {
    display: none;
    opacity: 0;
}

.details:not(.hidden) {
    display: block;
    opacity: 1;
}

/* Content Styling */
.container {
    width: 75%; /* Take up 75% of the screen width */
    max-width: 1080px; /* Limit the width to a maximum of 1080px */
    margin: 0 auto; /* Center the content horizontally */
    padding: 20px;
}

.big-ideas-block {
    margin-top: 40px;
}



/* Centering Sections */
.center-text {
    text-align: center;
    margin: 20px 0;
}

/* Generic Content Box */
.content-box {
    background-color: var(--section-bg-color);
    padding: 20px;
    border-radius: 5px;
    color: var(--text-color); /* Darker text for these sections */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    min-width: 320px; /* Prevent shrinking too much */
    flex-shrink: 0; /* Prevent flex items from shrinking */
    transition: transform 0.3s ease;
    text-align: center;
}

.content-box:hover {
    transform: scale(1.05);
    overflow: hidden;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusts columns to fit the container */
    gap: 15px; /* Space between grid items */
    padding: 20px;
    max-width: 75%; /* Maximum width of the grid container */
    margin: 20px auto; /* Center the grid container */
    color: var(--text-color); /* Darker text for these sections */
    text-align: center;
}

/* Grid Item */
.grid-item {
    background-color: var(--section-bg-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}
.grid-item:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Grid Title Section */
.grid-title-section {
    text-align: center;
    margin: 20px auto;
    max-width: 75%;
}

/* Content Styling */
.title-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px auto;
    max-width: 75%;
    margin: 0 auto;
    padding: 20px;
}

/* Footer */
footer {
    background: var(--section-bg-color);
    color: var(--button-text);
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Ensure the list is aligned to the left */
ul {
    list-style-position: inside;  /* Moves the bullets inside the list */
    padding-left: 0;  /* Remove any extra padding */
    margin-left: 0;   /* Remove default margin */
    text-align: left;  /* Explicitly set text alignment to left */
    display: block;    /* Make sure the list behaves as a block element */
}

ul li {
    margin-bottom: 5px; /* Reduce space between list items */
    line-height: 1.5;   /* Control line height for better readability */
}

/* Social media links */
.social-link {
    text-decoration: none;
    color: #5d7185; /* Adjust to fit your color scheme */
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ffffff; /* Light up on hover */
}

/* Social media icons */
.fab {
    font-size: 1.2em; /* Adjust icon size */
}

.emoji-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.contact-us {
    max-width: 440px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--section-bg-color); /* Same background as other content boxes */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.contact-us input,
.contact-us textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}

/* Make the image responsive */
.responsive-img {
    width: 100%;  /* Ensures the image scales based on the container width */
    height: auto; /* Maintains aspect ratio */
    max-width: 350px; /* Limits the maximum size to 350px */
}

/* No need for extra styling for small screens; default will work fine */
@media screen and (max-width: 768px) {
    .responsive-img {
        width: 100%; /* Ensure it takes full width of the container */
        max-width: 100%; /* Ensures the image can scale properly */
    }
}

.team-member-photo {
    width: 150px;       /* Adjust to the size you want */
    height: 150px;      /* Ensure height equals width for perfect circle */
    object-fit: cover;  /* Ensures image fills the circle and stays centered */
    border-radius: 50%; /* Makes the image a circle */
    margin-top: 10px;   /* Adds some space above the image */
}

.sonja-photo {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Ensures a perfect circle */
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the image fills the circular area */
    object-position: -25px; /* Moves DOWN by 15px and LEFT by 5px */
    display: block;
    margin: 0 auto; /* Centers the image */
}

.small-text {
    font-size: 0.75rem;
    vertical-align: sub;
    text-align: center; /* Center the text */
}

.image-container {
    display: flex;
    justify-content: center; /* Center the images */
    align-items: center;
    gap: 10px; /* Space between images */
    flex-wrap: wrap; /* Allow images to wrap on small screens */
    margin-top: 10px;
    max-width: 100%; /* Prevent overflowing */
}

.team-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background-color: transparent; /* keep transparency */
    border-radius: 10px;
    padding: 0; /* remove the padding */
    margin: 0 10px; /* reduce spacing between images */
    display: inline-block;
    vertical-align: middle;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* tight spacing */
    flex-wrap: wrap;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .team-image {
        max-width: 80px; /* Reduce size on very small screens */
        height: auto; /* Keep aspect ratio */
    }
}


/* Ensure the calendar container sits below the header and has proper spacing */
.calendar-container-wrapper {
    margin-top: 20px; /* Space between header and calendar */
    padding: 20px; /* Optional padding around the calendar */
    background: #fff; /* Optional background for the calendar container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional box shadow for the calendar */
    border-radius: 10px; /* Optional rounded corners */
    max-width: 100%; /* Ensure it fits inside the container */
    overflow-x: auto; /* Ensure itâ€™s scrollable horizontally if too wide */
}

/* Make the calendar responsive */
@media (max-width: 768px) {
    .calendar-container-wrapper {
        padding: 10px;
    }
}


/* Container for the Calendar Controls */
.calendar-controls-wrapper {
    margin-top: 20px; /* Space between header and controls */
    padding: 10px; /* Padding around controls */
    text-align: center; /* Center the buttons inside the container */
    background: #f9f9f9; /* Optional background color for contrast */
    max-width: 100%; /* Ensures controls container doesnâ€™t stretch beyond page */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* Align buttons side by side */
    justify-content: center; /* Center the controls horizontally */
}

/* Style for individual control buttons */
.calendar-controls-wrapper button {
    margin: 0 10px; /* Space out the buttons */
    padding: 10px 20px; /* Size of the buttons */
    background-color: #007bff; /* Button background color */
    color: white; /* Text color */
    border: none;
    border-radius: 5px; /* Rounded corners for buttons */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.calendar-controls-wrapper button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Optional: Make the buttons responsive */
@media (max-width: 768px) {
    .calendar-controls-wrapper button {
        padding: 8px 16px; /* Smaller buttons on mobile */
    }
}

/* Add some space between the buttons and the month/year */
.month-year-wrapper {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Adjust button positioning */
.calendar-controls-wrapper {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.rainbow-stripe {
    width: 100%;
    height: 6px; /* Adjust between 5-10px if you want */
    background: linear-gradient(
        to right,
        #e40303, /* red */
        #ff8c00, /* orange */
        #ffed00, /* yellow */
        #008026, /* green */
        #24408e, /* blue */
        #732982  /* violet */
    );
    margin-top: 20px;
    border-radius: 2px;
}</pre></body></html>