/* Unveiled - Redesigned with Designer Handoff System */
/* Built: March 18, 2026 */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Designer Handoff Colors */
    --burgundy: #7A4455;
    --cellar: #4A2535;
    --bg: #F9F9F7;
    --bg-card: #FFFFFF;
    --charcoal: #2E2826;
    --gold: #A8894A;
    --champagne: #C9A96A;
    --fig: #9B6E74;
    --border: #EEECEA;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--bg);
    line-height: 1.75;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.header {
    background: var(--cellar);
    padding: 32px 60px;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-container {
    max-width: 1760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 40px;
    color: var(--bg);
    letter-spacing: 0.14em;
    line-height: 1;
}

.nav-categories {
    display: flex;
    gap: 40px;
    align-items: center;
}

.category-tab {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--champagne);
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0.7;
    position: relative;
    padding-bottom: 4px;
}

.category-tab:hover {
    opacity: 1;
}

.category-tab.active {
    color: var(--champagne);
    opacity: 1;
}

.category-tab.active::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--champagne);
}

.search-container {
    margin-left: auto;
}

.search-input {
    width: 280px;
    padding: 10px 16px;
    border: 1px solid rgba(201,169,106,0.3);
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--bg);
    transition: border-color 0.2s ease;
}

.search-input::placeholder {
    color: rgba(249,249,247,0.4);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 9px;
}

.search-input:focus {
    outline: none;
    border-color: var(--champagne);
}

/* ===== FILTER PILLS ===== */
.pills-section {
    background: var(--bg);
    padding: 24px 60px;
    border-bottom: 1px solid var(--border);
}

.pills-container {
    max-width: 1760px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pills-container::-webkit-scrollbar {
    display: none;
}

.pill {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1px solid var(--charcoal);
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill:hover {
    background: var(--charcoal);
    color: var(--bg);
}

.pill.active {
    background: var(--burgundy);
    color: var(--bg);
    border-color: var(--burgundy);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 100px 60px;
    text-align: center;
    background: var(--bg);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 64px;
    line-height: 1.05;
    color: var(--burgundy);
    letter-spacing: 0.03em;
    margin-bottom: 32px;
}

.hero-subhead {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    color: var(--fig);
    letter-spacing: 0.02em;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 80px 60px 120px;
    background: var(--bg);
}

.container {
    max-width: 1760px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.3;
}

.section-subhead {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

/* ===== VENUES GRID (6 ACROSS) ===== */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.venue-card {
    cursor: pointer;
    transition: transform 0.2s ease;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.venue-card:hover {
    transform: translateY(-2px);
}

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

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--fig);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-align: center;
}

.venue-info {
    padding: 20px;
}

.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.venue-name {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    line-height: 1.4;
}

.venue-badge {
    flex-shrink: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 7px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 8px;
}

.venue-location {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fig);
    margin-bottom: 6px;
}

.venue-details {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fig);
    margin-bottom: 12px;
}

.venue-price {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.price-amount {
    font-weight: 400;
    color: var(--burgundy);
}

.price-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fig);
    margin-left: 6px;
}

/* ===== LOADING & EMPTY STATES ===== */
.loading-state,
.empty-state {
    text-align: center;
    padding: 100px 20px;
}

.loading-state p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fig);
}

.empty-state h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 32px;
    color: var(--burgundy);
    margin-bottom: 12px;
}

.empty-state p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: var(--charcoal);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.modal.active {
    display: block;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 37, 53, 0.85);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--charcoal);
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--charcoal);
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--charcoal);
    color: var(--bg);
}

#venueDetails {
    padding: 60px;
}

.detail-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 1.05;
    color: var(--burgundy);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.detail-location {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fig);
    margin-bottom: 20px;
}

.detail-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-badge {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 12px;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-item {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.price-item-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--fig);
    margin-bottom: 12px;
}

.price-item-value {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 28px;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}

.detail-text {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--cellar);
    padding: 80px 60px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
    max-width: 1760px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 32px;
    color: var(--bg);
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--champagne);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.footer-col h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: rgba(249,249,247,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--champagne);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(168,137,74,0.2);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champagne);
    opacity: 0.5;
    margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .venues-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-headline {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 24px 28px;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .logo {
        font-size: 32px;
    }
    
    .nav-categories {
        order: 3;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 24px;
    }
    
    .nav-categories::-webkit-scrollbar {
        display: none;
    }
    
    .search-container {
        margin-left: 0;
    }
    
    .search-input {
        width: 180px;
    }
    
    .pills-section {
        padding: 20px 28px;
    }
    
    .hero {
        padding: 60px 28px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .main-content {
        padding: 60px 28px 80px;
    }
    
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .footer {
        padding: 60px 28px 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    #venueDetails {
        padding: 40px 28px;
    }
    
    .detail-title {
        font-size: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
