/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --light-text: #fff;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --button-hover: #2980b9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #f4f4f4;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Vegas Container */
.vegas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0;
    padding: 0;
    background: #000;
}

/* Ensure Vegas slides take full container */
.vegas-container .vegas-slide,
.vegas-container .vegas-slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
}

/* Overlay (disabled to remove fuzzy/dim effect) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    z-index: 1;
    pointer-events: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: none !important;
}

/* Header & Navigation */
/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    width: 100%;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover, nav li.active a {
    background: var(--secondary-color);
    color: var(--light-text);
}

/* Main Content */
main {
    max-width: 1200px;
    width: 90%;
    margin: 1rem auto;
    padding: 1.5rem;
    background: transparent; /* remove haze */
    border-radius: 8px;
    box-shadow: none; /* remove haze shadow */
    position: relative;
    z-index: 10;
    flex: 1;
    overflow-y: auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    main {
        padding: 1rem;
    }
}

/* Touch targets */
a, button, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent text from being too small on mobile */
p, li, a, span, div {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    margin: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

/* Calendar */
.calendar-container {
    padding: 1rem 0;
    margin: 1rem 0;
}

.calendar-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

/* Responsive Design */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 1210px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav li {
        margin: 0;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }
    
    main {
        padding: 1rem;
        margin: 1rem;
        width: auto;
    }
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        margin: 0.5rem 0 0;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        width: 100%;
    }
    
    nav li {
        margin: 0.3rem 0.5rem;
    }
    
    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    main {
        margin: 1rem;
        padding: 1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    /* Calendar Toggle Button - Now using inline styles */
.calendar-toggle i {
    transition: transform 0.3s ease;
}

/* Upcoming Events Section */
.upcoming-events-wrapper {
    background: transparent; /* remove frosted haze */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: none;
    color: #ffffff; /* keep readable text */
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #f0f0f0; /* Light grey for better readability */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Section Header */
.upcoming-events .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
}

.upcoming-events h2 {
    margin: 0;
    font-size: 2rem;
    color: #f0f0f0; /* Light grey for better readability */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Calendar container */
.calendar-container {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 0 0 8px 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Calendar iframe */
.calendar-container iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 0 0 8px 8px;
    display: block;
}

/* Hover effects */
.calendar-toggle:hover {
    background-color: #2980b9;
}

/* Fixed position toggle for events page */
body.events-page .calendar-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.calendar-toggle:hover {
    background-color: var(--button-hover);
    transform: scale(1.1);
}

.calendar-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
}

/* Calendar Container */
.calendar-container {
    transition: all 0.3s ease-in-out;
    max-height: 1000px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.calendar-container.collapsed {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

/* Calendar iframe */
.calendar-container iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Activities Page */
.activities-page {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.activity-day {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.activity-day h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.activity-day ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-day li {
    padding: 0.8rem 0;
    font-size: 1.2rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-day li:last-child {
    border-bottom: none;
}

.activity-day li strong {
    color: #b362ff;  /* Modern teal color */
    margin-right: 0.5rem;
    font-weight: 600;  /* Slightly bolder */
}

/* Override for activity time text */
.activities-page .activity-day li strong,
.activities-page .activity-day li strong:hover,
.activities-page .activity-day li strong:focus {
    color: #b362ff !important;
    font-weight: 600 !important;
    margin-right: 0.5rem !important;
}

/* Home Page Styles */
.home-page {
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.home-page .page-title {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8), 
                -1px -1px 3px rgba(0,0,0,0.8), 
                0 0 10px rgba(0,0,0,0.5);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.home-page .welcome-message {
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 auto 2rem;
    max-width: 800px;
}

.home-page .welcome-message p {
    color: white;
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.home-page .quick-links {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 8px;
    margin: 0 auto 2rem;
    max-width: 800px;
}

.home-page .quick-links h2 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0 0 1.5rem 0;
    font-size: 2rem;
}

.home-page .button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-page .button-group .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-page .button-group .btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}

/* Modern CSS Marquee Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 10px;
    animation: scroll 60s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

.marquee-content:hover {
    animation-play-state: paused;
}

.announcement {
    display: inline-block;
    margin-right: 10px;
}

.announc.event-date {
    text-align: center;
    margin-right: 1.5rem;
    min-width: 120px;  /* Increased width for full month name */
    display: flex;
    align-items: center;
    justify-content: center;
}

.formatted-date {
    font-size: 1.5rem;  /* Increased from 1.2rem */
    font-weight: 700;   /* Bolder */
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.9);  /* Slightly more opaque */
    padding: 1rem 1.2rem;  /* More padding */
    border-radius: 8px;  /* Slightly more rounded corners */
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);  /* Subtle text shadow for better readability */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);  /* Subtle shadow for depth */
}

.announcement-text {
    display: inline;
}

.announcement-title {
    color: #3498db;
    margin-right: 8px;
    font-weight: bold;
}

.announcement-separator {
    color: #666;
    margin: 0 15px;
    display: inline-block;
}

/* Make sure the marquee is readable on mobile */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 1rem;
        animation-duration: 90s; /* Slower on mobile */
    }
    
    .announcement {
        margin-right: 5px;
    }
    
    .announcement-separator {
        margin: 0 8px;
    }
}

footer {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 100;
    width: 100%;
    margin-top: auto;
}

.copyright {
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* Photo Gallery: compact album filter buttons */
.album-filters .btn {
    padding: 0.35rem 0.6rem;
    width: auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Photo Gallery: compact sort buttons with distinct color */
.sort-controls .btn {
    padding: 0.35rem 0.6rem;
    width: auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6c5ce7; /* distinct purple */
}

.sort-controls .btn:hover {
    background-color: #5849c7;
}

.sort-controls .btn.active {
    background-color: #8e44ad; /* active variant */
}

/* Override global mobile rule that makes .btn full-width */
@media (max-width: 768px) {
    .album-filters .btn {
        width: auto !important;
        display: inline-flex !important;
    }
    .sort-controls .btn {
        width: auto !important;
        display: inline-flex !important;
    }
}

/* Make sure the marquee is readable on mobile */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 1rem;
        animation-duration: 90s; /* Slower on mobile */
    }
    
    .announcement {
        margin-right: 5px;
    }
    
    .announcement-separator {
        margin: 0 8px;
    }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 800px;
}

/* Form group styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form labels */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

/* Form inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Focus states */
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Alert messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-danger ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.alert-danger li {
    margin-bottom: 0.25rem;
}

/* Loading state */
.btn-spinner {
    display: none;
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* Events Page: High-contrast cards for readability */
body.events-page .event-highlights {
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
}

body.events-page .event-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 0 0 1rem 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ensure date block aligns nicely and stays readable */
body.events-page .event-card .event-date {
    min-width: 160px;
}

/* Typography sizing for readability */
body.events-page .event-card h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

body.events-page .event-card p,
body.events-page .event-card .event-time,
body.events-page .event-card .event-location,
body.events-page .event-card .event-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
}

/* Buttons inside event cards */
body.events-page .event-card .btn {
    background: #1e90ff;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
}

body.events-page .event-card .btn:hover {
    background: #0f74d1;
}

/* Better icon contrast next to location/time */
body.events-page .event-card i {
    color: #ffffff;
    margin-right: 0.35rem;
}

/* Responsive stacking on narrow screens */
@media (max-width: 680px) {
    body.events-page .event-card {
        flex-direction: column;
    }
    body.events-page .event-card .event-date {
        min-width: auto;
        margin-right: 0;
    }
}

/* Events Page: Larger text mode */
body.events-page.text-large {
    font-size: 20px; /* larger base size */
}

body.events-page.text-large .page-title,
body.events-page.text-large h1,
body.events-page.text-large h2 {
    font-size: 2.6rem;
}

body.events-page.text-large .event-card h3 {
    font-size: 2.2rem;
}

body.events-page.text-large .event-card p,
body.events-page.text-large .event-card .event-time,
body.events-page.text-large .event-card .event-location,
body.events-page.text-large .event-card .event-description {
    font-size: 1.5rem;
    line-height: 1.9;
}

body.events-page.text-large .formatted-date {
    font-size: 2rem;
    padding: 1.2rem 1.5rem;
}

/* Optional: ensure buttons remain comfortable in larger mode */
body.events-page.text-large .event-card .btn {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
}

/* For Sale Page */
.forsale-page {
    color: #ffffff;
}

.forsale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.forsale-card {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.forsale-thumb {
    flex: 0 0 140px;
    display: block;
}

.forsale-thumb img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
}

.forsale-content { flex: 1; }

.forsale-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

.forsale-meta {
    font-size: 1.15rem;
    margin: 0 0 0.5rem 0;
    color: #e8e8e8;
}

.forsale-sep { margin: 0 0.5rem; opacity: 0.7; }

.forsale-price { font-weight: 700; color: #2ecc71; }

.forsale-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0.25rem 0 0.75rem 0;
}

.forsale-contact {
    font-size: 1.1rem;
}

@media (max-width: 680px) {
    .forsale-card { flex-direction: column; }
    .forsale-thumb { flex: none; }
    .forsale-thumb img { width: 100%; height: auto; }
}

/* For Sale title styling */
.forsale-page .page-title {
    color: #f0f0f0;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    position: relative;
}

.forsale-page .page-title::after {
    content: "";
    display: block;
    height: 4px;
    width: 140px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2ecc71, #3498db);
}

/* Modal caption */
.forsale-caption {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}
