/* --- General Resets & Box Model --- */
* {
    box-sizing: border-box; 
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    font-size: 18px;
    line-height: 200%;
    background-color: #ffffff;
    color: #0f001a;
}

/* --- Link Styles --- */
a {
    text-decoration: none;
    transition: opacity 0.3s;
}
a:link, a:visited {
    color: #ffffff;
    font-weight: 800;
}
a:hover {
    opacity: 0.8;
}

/* Dark text links (for the Favorites header and internal content) */
a.dark-link:link, a.dark-link:visited {
    color: #333333;
}

/* --- Typography Classes --- */
h1 { margin: 0; padding: 0; font-weight: normal; }

h3 {
    color: #000000;
    font-size: 32px;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    margin: 0;
}

p {
    font-size: 22px;
    font-family: "Calibri Light", Arial, Verdana, sans-serif;
    font-weight: 700;
    line-height: 200%;
    margin-top: 20px;
    margin-bottom: 0;
}

b, strong {
    font-weight: 800;
    font-family: "Calibri Light", Arial, Verdana, sans-serif;
    font-size: 22px;
}

.headerTitle {
    color: #0f001a;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    font-size: 36px;
    line-height: 1.6;
    letter-spacing: 3px;
    font-weight: 500;
}

.headerBlue {
    color: #0197e6;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    font-size: 38px;
    line-height: 1.0;
    letter-spacing: 2.75px;
    font-weight: 500;
}

.largeContent {
    color: #0f001a;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    font-size: 24px;
    line-height: 2.0;
    letter-spacing: 2px;
    font-weight: 200;
}

.medContent {
    color: #0f001a;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
    font-size: 20px;
    line-height: 2.0;
    letter-spacing: 2px;
    font-weight: 200;
}

/* --- Color Utilities --- */
.bg-dark-blue { background-color: #0f083a; }
.bg-light-gray { background-color: #EAEAEA; }
.clientFavs { color: #ffffff; font-size: 30px; }
.clientFavs2 { color: #333333; }
.heart-accent { color: #000; } /* For the heart inside client favorites */

/* --- Image Utilities --- */
img {
    border: 0;
    display: block; 
    max-width: 100%;
}
.icon-inline {
    display: inline-block; 
    vertical-align: middle;
}
.icon-adjust {
    padding-bottom: 3px;
}
.banner-img {
    width: 100%;
}

/* --- Spacing Utilities (Replaces inline styles) --- */
.mb-20 { margin-bottom: 20px; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }

/* --- Flexbox Layout Containers --- */

/* Header Layout */
.header-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 5px 10px 10px;
}
.nav-items {
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.nav-item {
    padding: 0 10px;
    line-height: 1; 
}
.heart-icon {
    color: #ffffff; 
    font-size: 34px; 
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

/* Content Layouts */
.full-width {
    width: 100%;
}

.container-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.width-95 {
    width: 95%;
    margin: 0 auto;
    padding: 40px;
}

.width-85 {
    width: 85%;
    margin: 0 auto;
    padding: 40px;
}

.width-65-img {
    width: 65%;
    height: auto;
}

.cta-section {
    padding: 20px 0 40px 0;
    text-align: center;
}

/* Footer Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}
.footer-links {
    display: flex;
    align-items: flex-end; 
}
.copyright {
    font-size: 16px; 
    color: #ffffff;
    text-align: right;
}

/* --- Contact Page Specific Styles --- */

/* Split layout for Contact Info and Form */
.contact-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.contact-info-side {
    flex: 1; /* Takes up remaining space */
    max-width: 40%;
}

.contact-form-side {
    flex: 1;
    max-width: 60%;
    background-color: #ffffff; /* White background for form area */
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Subtle drop shadow */
}

/* Form Elements */
.contact-label {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-family: Calibri, Arial, verdana, sans-serif;
    font-weight: 700;
}

.contact-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-family: Calibri, sans-serif;
    font-size: 18px;
    background-color: #f9f9f9;
}

.contact-input:focus {
    border-color: #0197e6;
    outline: none;
    background-color: #fff;
}

.submit-btn {
    background-color: #0f083a;
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    font-family: Calibri, sans-serif;
    letter-spacing: 2px;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0197e6;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
    }
    .contact-info-side, .contact-form-side {
        max-width: 100%;
    }
}

/* --- Gallery / Inspiration Page Styles (UPDATED) --- */
.gallery-wrapper {
    padding: 30px 0; 
    background-color: #ffffff;
}

.favorites-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Slightly smaller minimum width */
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.favorite-card {
    background-color: #fff; 
    border-radius: 8px; 
    /* overflow: hidden;  REMOVED to allow padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    height: 100%; 
    padding: 15px; /* ADDED PADDING around the card content */
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.room-image {
    width: 100%; /* Takes up available space inside the padding */
    height: 200px; /* Fixed height for thumbnail uniform look */
    object-fit: cover; /* Ensures image fills dimension without stretching */
    display: block; 
    border-radius: 4px; /* Softens corners of the thumbnail */
}

/* Typography Overrides for Gallery Cards */
h2 {
    margin: 15px 0 10px; 
    font-size: 1.5em;
    color: #333;
    text-align: center;
    font-family: Calibri, Corbel, Arial, Verdana, sans-serif;
}

.favorite-card .medContent {
    line-height: 1.5; 
    letter-spacing: 0; 
    font-weight: normal;
    font-size: 1em;
    /* padding: 0 20px 20px;  REMOVED as parent card now has padding */
    color: #666;
    text-align: center; 
    display: block; 
    margin: 0 auto; 
}

