/* ============================================
   COMPONENTS.CSS - Cards, Modals, Panels
   Forged Light solid theme. No glassmorphism. Clean high-end RE.
   Architecture: main.css → components.css → gallery.css → responsive.css
   ============================================ */

/* --------------------------------------------
   NAVIGATION (.sticky-nav)
   From architecture: Sticky navigation with smooth scroll and active states
   -------------------------------------------- */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--space-4) var(--space-6);
    transition: all var(--transition-base);
}

.sticky-nav.scrolled {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--text);
    letter-spacing: -0.03em;
    transition: color var(--transition-fast);
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-link {
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-2) var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
}

.nav-cta {
    margin-left: var(--space-4);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--accent-text);
    border-color: var(--accent);
}

/* --------------------------------------------
   BUTTONS
   .btn-primary, .btn-secondary (was btn-glass - solid clean no glass), .btn-icon
   -------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--accent);
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background: var(--accent-dim);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

/* Clean secondary / outline button - no glassmorphism, high-end minimal */
.btn-glass,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px 18px;
    background: transparent;
    color: var(--text);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-glass:hover,
.btn-secondary:hover {
    background: var(--accent);
    color: var(--accent-text);
    border-color: var(--accent);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text);
    transition: all var(--transition-base);
}

.btn-icon:hover {
    background: var(--surface2);
    border-color: var(--accent);
    transform: scale(1.02);
}

/* --------------------------------------------
   HERO SECTION
   -------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20) var(--space-6);
    padding-top: calc(var(--space-20) + 60px);
    /* Elegant high-end RE hero: strong photo, minimal clean overlay */
    background: linear-gradient(180deg, rgba(14,26,43,0.22) 0%, rgba(14,26,43,0.38) 100%), url('../images/2525-napier-ave/exterior.jpg');
    background-size: cover;
    background-position: center 38%;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-4);
    letter-spacing: -0.04em;
    line-height: 1.04;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-light);
    color: rgba(255,255,255,0.92);
    margin-bottom: var(--space-10);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: var(--space-8);
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.85);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: var(--accent);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* --------------------------------------------
   PORTFOLIO SECTION
   -------------------------------------------- */
.portfolio-section {
    padding: 80px 0 92px;
    background: var(--bg-body);
}

/* --------------------------------------------
   PROPERTY CARDS - Clean, no glass, elegant high-end RE grid
   Image treatment: crisp cover, subtle scale on hover. Text clean below on white.
   -------------------------------------------- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.property-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface2);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.property-card:hover .card-image {
    transform: scale(1.05);
}

/* Clean solid card body: perfect high-end RE card below crisp image. No glass. */
.card-body {
    padding: 16px 18px 18px;
    background: var(--surface);
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.card-subtitle {
    font-size: 0.8125rem;
    color: var(--text2);
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
}

.card-meta {
    margin-top: auto;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* Thumbnail overlay labels - white font on dark gradient for readability over photos.
   No glassmorphism. Always visible on the image. */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    color: #ffffff;
    z-index: 2;
}

.card-overlay .card-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.card-overlay .card-subtitle {
    font-size: 0.75rem;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Badge on image corner - clean gold accent (from lodge) */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #ffffff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

/* Removed center view-more icon for clean minimal high-end presentation.
   Hover lift + subtle image zoom + gold badge provide clear interaction cue. */

/* --------------------------------------------
   PANEL / CARD
   Clean solid surface container (no glassmorphism)
   -------------------------------------------- */
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* --------------------------------------------
   VALUE BOX
   Highlighted metrics display (from rent.html)
   -------------------------------------------- */
.value-box {
    background: var(--accent); 
    color: #ffffff;
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
}

.value-box-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: var(--space-2);
}

.value-box-value {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    letter-spacing: -1px;
}

/* --------------------------------------------
   METRIC CARD
   Small stat display cards
   -------------------------------------------- */
.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
}

.metric-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text2);
    margin-bottom: var(--space-2);
}

.metric-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text);
}

.metric-value.success {
    color: var(--success);
}

/* --------------------------------------------
   INVESTMENT SECTION
   -------------------------------------------- */
.investment-section {
    padding: 64px 0 92px;
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}

.investment-preview {
    display: flex;
    justify-content: center;
}

/* Polished investment preview card - clean solid, leading to rent.html */
.investment-card {
    max-width: 540px;
    padding: 42px 48px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.investment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 999px;
    margin-bottom: var(--space-6);
}

.investment-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text);
}

.investment-card p {
    color: var(--text2);
    font-size: 0.97rem;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.investment-metrics {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.metric-mini {
    text-align: center;
    min-width: 88px;
}

.metric-mini-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.metric-mini-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    opacity: 0.75;
}

/* --------------------------------------------
   CONTACT PANEL
   Floating button + expandable panel
   -------------------------------------------- */
.contact-wrapper {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-modal);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--accent); color: var(--accent-text);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.contact-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.contact-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-base);
}

.contact-panel.expanded {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border);
}

.contact-panel-header h3 {
    font-size: var(--text-lg);
    color: var(--text);
}

.contact-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text2);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.contact-panel-close:hover {
    color: var(--text);
    background: var(--border);
}

.contact-panel-content {
    padding: var(--space-5);
}

.contact-panel-content p {
    color: var(--text2);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.contact-email {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.contact-email:hover {
    background: var(--accent-faint);
    border-color: var(--accent);
}

.contact-email svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* --------------------------------------------
   FOOTER
   -------------------------------------------- */
.footer {
    background: var(--surface);
    padding: var(--space-12) var(--space-6);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.footer-location {
    color: var(--text2);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.footer-copyright {
    color: var(--text2);
    font-size: var(--text-xs);
    opacity: 0.7;
}

/* --------------------------------------------
   ANIMATIONS
   Scroll reveal and entrance animations
   -------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to cards */
.property-card {
    animation: fadeInUp 0.6s ease backwards;
}

.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }
.property-card:nth-child(5) { animation-delay: 0.5s; }
.property-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   MACON PAGE STYLES
   Content pages with informational sections
   ============================================ */

/* Short hero for inner pages */
.hero-short {
    min-height: 50vh;
    padding-top: calc(var(--space-16) + 60px);
}

/* Content sections */
.content-section {
    padding: var(--space-16) 0;
    background: var(--bg-body);
}

.content-section.alt-bg {
    background: var(--bg-body);
}

/* Content cards */
.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.card-heading {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text);
    margin-bottom: var(--space-4);
}

/* Lead text */
.lead-text {
    font-size: var(--text-lg);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.lead-text.coming-soon {
    text-align: center;
    font-style: italic;
    color: var(--text2);
}

/* Info grid (location section) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.info-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--border);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent); color: var(--text);
    border-radius: var(--radius-md);
    color: var(--text);
}

.info-content h4 {
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: var(--text);
    margin-bottom: var(--space-1);
}

.info-content p {
    font-size: var(--text-sm);
    color: var(--text2);
    line-height: 1.5;
}

/* Feature lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding: var(--space-3) 0;
    padding-left: var(--space-6);
    color: var(--text);
    font-size: var(--text-base);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.feature-list li strong {
    color: var(--text);
}

/* Highlight box */
.highlight-box {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--accent-faint);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.highlight-box p {
    color: var(--text);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

.highlight-box em {
    color: var(--accent);
    font-style: normal;
    font-weight: var(--font-bold);
}

/* Places grid (coming soon section) */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.place-category {
    padding: var(--space-5);
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.place-category:hover {
    background: var(--surface2);
    border-color: var(--accent);
}

.place-category h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text);
    margin-bottom: var(--space-2);
}

.place-category p {
    font-size: var(--text-sm);
    color: var(--text2);
}

/* Sources section */
.sources-card {
    background: var(--border);
}

.sources-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sources-list li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
}

.sources-list li:last-child {
    border-bottom: none;
}

.sources-list a {
    color: var(--accent);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.sources-list a:hover {
    color: var(--text);
    text-decoration: underline;
}
erline;
}
