/* Basic styles for StreetScenes project */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 20px -20px;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}

.btn:hover {
    background-color: #45a049;
}

/* Styles moved from base.html */
.navbar-brand {
    font-weight: bold;
    color: #4CAF50 !important;
}

.event-card {
    transition: transform 0.2s;
    border: 1px solid #e0e0e0;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.status-badge {
    font-size: 0.8em;
}

.hero-section {
    background-color: transparent !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white !important;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-section .container {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative;
    z-index: 2;
}

.hero-section a:not(.btn) {
    color: #FFF8E7;
    text-decoration: underline;
}

.hero-section a:not(.btn):hover {
    color: #FFE5CC;
    text-decoration: underline;
}

.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer .row {
    align-items: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    height: 100%;
}

.social-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
}

.social-link:hover {
    color: #4CAF50;
    transform: scale(1.1);
}

.social-link i {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
}

/* Styles for event detail page */
.event-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.event-header .container {
    background-color: #4CAF50;
    box-shadow: none;
    border-radius: 0;
}

.event-image {
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.status-badge {
    font-size: 1.1em;
    padding: 0.5rem 1rem;
}

.cohost-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.cohost-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.action-buttons {
    position: sticky;
    top: 20px;
}

.feedback-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

