.logo, .brand-title {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
}

.sitelogo {
    text-transform: lowercase;
}

.logo .text-2xl {
    font-size: 2rem;
}

.notification-bell .dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    background-color: #ef4444;
    border-radius: 9999px;
    border: 2px solid white;
}

.notification-dropdown {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: calc(100vw - 1rem);
}

.notification-bell.show .notification-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.notification-item {
    transition: background-color 0.2s ease;
}

.notification-item.unread {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    font-weight: 600;
}

.notification-item.read {
    background-color: #fff;
    color: #4b5563;
}

.notification-item:hover {
    background-color: #f1f5f9;
}

.notification-item a {
    color: inherit;
    text-decoration: none;
}

.hero-section {
    background: url("bg.jpg") no-repeat center center/cover fixed;
}

.hero-section.director {
    background: url("bg-director.jpg") no-repeat center center/cover fixed;
}

.feature-table .feature-header,
.feature-table .feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.pricing-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.price-container {
    position: relative;
    height: 3rem;
    display: block;
}

.price-container .monthly-price,
.price-container .annual-price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

/* Event description specific styling */
.event-description {
    white-space: pre-wrap;
}

.event-description a {
    color: #1d4ed8;
}

.event-description a:hover {
    text-decoration: underline;
}