﻿/*
    PlumSpaces – Remedios Styles
    Cleaned + Modernized
    Safe replacement
*/

/* ===================================================== */
/* LINKS */
/* ===================================================== */

.a-remedios {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: color 0.2s ease;
}

.a-remedios:hover {
    color: #8a5a2b;
    text-decoration: underline;
}

/* ===================================================== */
/* BASE LAYOUT */
/* ===================================================== */

body {
    background-color: #ffffff;
}

.body-content {
    padding-top: 10px;
}

/* ===================================================== */
/* TEXT STYLES */
/* ===================================================== */

.display-text {
    color: black;
    font-family: Arial, sans-serif;
    font-size: small;
    margin-bottom: 1em;
}

.display-text-2 {
    color: black;
    font-family: Arial, sans-serif;
    font-size: medium;
    margin-bottom: 1em;
}

.display-text-3 {
    color: gray;
    font-family: Arial, sans-serif;
    font-size: small;
    margin-bottom: 1em;
}

.heading {
    font-weight: bold;
}

/* ===================================================== */
/* VISIBILITY HELPERS */
/* ===================================================== */

.DIV-unhide {
    display: block;
    visibility: visible;
}

.DIV-hide {
    display: none;
    visibility: hidden;
}

/* ===================================================== */
/* FOOTER */
/* ===================================================== */

.footer {
    color: lightgrey;
    font-size: small;
    font-family: "Courier New", Courier, monospace;
}

.footer-almost-invisible {
    color: black;
    opacity: 0.5;
    font-size: small;
    font-family: "Courier New", Courier, monospace;
}

/* ===================================================== */
/* FORMS */
/* ===================================================== */

.form-placeholder,
.form-placeholder2,
.form-placeholder3,
.form-placeholder4 {
    display: inline-block;
    width: 100%;
    border: 0;
    padding: 6px 12px;
    border-radius: 4px;
}

.form-placeholder {
    height: 42px;
    padding-top: 10px;
    background-color: white;
}

.form-placeholder2 {
    height: 42px;
    padding-top: 10px;
    padding-bottom: 46px;
    background-color: lightblue;
}

.form-placeholder3 {
    height: 41px;
    padding-top: 10px;
    background-color: bisque;
}

.form-placeholder4 {
    height: 51px;
    padding-top: 15px;
    margin-bottom: 5px;
    background-color: lightgray;
}

.req-field-for-rental-viewing {
    background-color: yellow;
}

/* ===================================================== */
/* IMAGE GALLERY (Sam & Luke) */
/* ===================================================== */

.gallery-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    text-align: center;
}

.gallery-main img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.3em 0.6em;
    cursor: pointer;
    z-index: 10;
}

.nav.left { left: 0; }
.nav.right { right: 0; }

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumbs img.active {
    opacity: 1;
    border-color: darkmagenta;
}

/* ===================================================== */
/* SIMPLE IMAGE GRID */
/* ===================================================== */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===================================================== */
/* PAINTINGS */
/* ===================================================== */

.painting-title {
    color: black;
    font-family: Arial, sans-serif;
    font-size: small;
    font-weight: bold;
}

/* ===================================================== */
/* NAVBAR (Bootstrap 5 SAFE) */
/* ===================================================== */

.navbar {
    background-color: #ffffff;
    border-bottom: none;
}

.r-navbar-brand {
    color: black;
    text-decoration: none;
}

.r-navbar-brand:hover,
.r-navbar-brand:focus {
    color: black;
    font-weight: bold;
}

/* ===================================================== */
/* RADIO GROUPS */
/* ===================================================== */

.radio-group label {
    background-color: lightblue;
    padding: 5px 5px 5px 35px;
    display: inline-block;
    margin: 2px;
    line-height: 1;
}

/* ===================================================== */
/* SPACING */
/* ===================================================== */

.top-spacer {
    padding-top: 0;
}

/* ===================================================== */
/* RESPONSIVE VIDEO EMBEDS */
/* ===================================================== */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
