/* VDE Convention Floor Styles */

.bg-maroon { background-color: #800000 !important; }
.text-maroon { color: #800000 !important; }
.btn-maroon { background-color: #800000; border-color: #800000; color: #fff; }
.btn-maroon:hover { background-color: #600000; border-color: #600000; color: #fff; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
}

.floor-content { padding-top: 80px; padding-bottom: 40px; }

/* Login page */
.floor-login-bg {
    background: linear-gradient(135deg, #800000 0%, #2c0000 100%);
    min-height: 100vh;
}

/* Navigation cards */
.nav-card {
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15) !important;
    text-decoration: none;
    color: #333;
}

/* Booth cards */
.booth-card {
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
}
.booth-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: #333;
}
.booth-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}
.booth-logo-placeholder {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booth viewer */
.booth-header {
    background-color: #2c0000;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booth-header-overlay {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
}
.booth-header-logo {
    max-height: 100px;
    max-width: 300px;
}
.booth-company-name {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}
.booth-panel-img {
    width: 100%;
    border: 1px solid #eee;
}

/* Virtual business card */
.vcard-preview {
    border: 2px solid #800000;
    background: linear-gradient(to bottom, #fff, #f9f9f9);
}

/* Footer */
.floor-footer {
    border-top: 3px solid #800000;
}

@media (max-width: 768px) {
    .floor-content { padding-top: 70px; }
    .booth-header { min-height: 150px; }
    .booth-company-name { font-size: 1.5rem; }
}
