/* HiveSpaces Custom CSS Stylesheet */

:root {
    --bg-main: #0a0b0e;
    --bg-surface: rgba(20, 24, 33, 0.6);
    --bg-card: rgba(28, 33, 46, 0.5);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(223, 159, 40, 0.3);
    
    --primary-color: #df9f28; /* Premium warm gold */
    --primary-gradient: linear-gradient(135deg, #df9f28 0%, #ff6b00 100%);
    --accent-color: #ff6b00; /* Energy orange */
    
    --text-primary: #f5f6f9;
    --text-secondary: #a0aab8;
    --text-muted: #6b7787;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-hive {
    color: var(--text-primary);
}

.logo-spaces {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--primary-gradient);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(223, 159, 40, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 159, 40, 0.35);
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('https://cdn.wedding-spot.com/images/venues/8374/Lumen-Events-Wedding-St-Louis-MO-6.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 11, 14, 0.4) 0%, rgba(10, 11, 14, 0.95) 90%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(223, 159, 40, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 159, 40, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Sections Global */
.spaces-section, .partnerships-section, .inquire-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Spaces Grid & Cards */
.spaces-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.space-card {
    display: flex;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(12px);
}

.space-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(223, 159, 40, 0.08);
}

.space-image {
    flex: 1.1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.space-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 11, 14, 0.85);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.space-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.space-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.space-location {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.space-location i {
    margin-right: 5px;
}

.space-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.space-features {
    list-style: none;
    margin-bottom: 35px;
}

.space-features li {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.space-features li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.btn-card-primary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-card-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(223, 159, 40, 0.2);
}

@media (max-width: 992px) {
    .space-card {
        flex-direction: column;
    }
    .space-image {
        min-height: 300px;
    }
    .space-info {
        padding: 30px;
    }
}

/* Partnerships / Vendor Section */
.partnerships-section {
    background: radial-gradient(circle at 10% 20%, rgba(223, 159, 40, 0.03) 0%, rgba(10, 11, 14, 0) 50%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partnership-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 992px) {
    .partnership-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.partnership-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.partnership-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.partner-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    background: rgba(223, 159, 40, 0.1);
    border: 1px solid rgba(223, 159, 40, 0.2);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.partnership-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.partnership-form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.partnership-form-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

/* Forms Global */
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background-color: var(--bg-main);
    color: #fff;
}

.btn-form-submit {
    width: 100%;
    border: none;
    background: var(--primary-gradient);
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 16px;
    margin-top: 10px;
}

/* Inquiries Section */
.inquire-section {
    background-color: rgba(15, 18, 25, 0.4);
}

.inquiry-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .inquiry-card {
        padding: 30px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .full-width {
        grid-column: span 1;
    }
}

/* Success Messages */
.success-message {
    text-align: center;
    padding: 30px 10px;
    animation: fadeIn 0.5s ease forwards;
}

.success-message i {
    font-size: 3.5rem;
    color: #2ec4b6;
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hidden {
    display: none !important;
}

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

/* Footer Styles */
.footer {
    background-color: #050608;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    line-height: 1.8;
}

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

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

.footer-links ul li a {
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact p i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
}

/* Highlights Banner styling */
.highlights-banner {
    background: rgba(15, 18, 25, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    backdrop-filter: blur(10px);
}

.highlights-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(223, 159, 40, 0.3);
}

.highlight-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Booking & Portal Tracks Section */
.booking-portal-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom right, rgba(223, 159, 40, 0.02) 0%, rgba(10, 11, 14, 0) 60%);
    border-top: 1px solid var(--border-color);
}

.portal-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 16px 32px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    border-color: var(--border-hover);
    color: #fff;
}

.tab-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(223, 159, 40, 0.25);
}

.portal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .portal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Pricing Estimator Card styling */
.calc-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.calc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.radio-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.radio-label input {
    accent-color: var(--primary-color);
    cursor: pointer;
}

.calc-output-box {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.output-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.output-row.total-row {
    margin-bottom: 0;
    align-items: center;
    font-size: 1rem;
}

.text-success {
    color: #2ec4b6 !important;
}

.text-warning {
    color: #ff6b00 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Interactive Availability Calendar Styles */
.calendar-widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.calendar-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-legend {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.color-available { background-color: #2ec4b6; box-shadow: 0 0 8px rgba(46, 196, 182, 0.5); }
.color-pending { background-color: #df9f28; box-shadow: 0 0 8px rgba(223, 159, 40, 0.5); }
.color-booked { background-color: #6b7787; }

.months-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    .months-container {
        grid-template-columns: 1fr 1fr;
    }
}

.month-block {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

.month-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.day-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding-bottom: 8px;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
}

.day-cell.empty {
    visibility: hidden;
}

.day-cell.available {
    background: rgba(46, 196, 182, 0.05);
    border: 1px solid rgba(46, 196, 182, 0.15);
    color: #2ec4b6;
    cursor: pointer;
}

.day-cell.available:hover {
    background: rgba(46, 196, 182, 0.2);
    border-color: #2ec4b6;
    transform: scale(1.08);
}

.day-cell.available.selected {
    background: #2ec4b6;
    color: #000;
    font-weight: 700;
    border-color: #2ec4b6;
    box-shadow: 0 0 12px rgba(46, 196, 182, 0.4);
}

.day-cell.pending {
    background: rgba(223, 159, 40, 0.05);
    border: 1px solid rgba(223, 159, 40, 0.15);
    color: #df9f28;
    cursor: not-allowed;
}

.day-cell.pending::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    background: #df9f28;
    border-radius: 50%;
}

.day-cell.booked {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    text-decoration: line-through;
    cursor: not-allowed;
}

.calendar-terms-box {
    margin-top: 20px;
    background: rgba(223, 159, 40, 0.08);
    border: 1px solid rgba(223, 159, 40, 0.2);
    border-radius: 12px;
    padding: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    display: flex;
    gap: 10px;
    align-items: start;
}

.calendar-terms-box i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

