/* Peer Gathering Page Styles */

/* Custom Tailwind utilities */
@layer utilities {
    .h-34 {
        height: 8.5rem;
    }
    
    .h-38 {
        height: 9.5rem;
    }
}

/* Status bar styles */

/* Header styles */
.header {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

.title {
    font-weight: 650;
    line-height: 1.4;
}

/* Banner styles */
.banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Meeting list styles */
.meeting-list {
    font-family: 'Inter', sans-serif;
}

.meeting-title {
    font-weight: 500;
    line-height: 1.4;
}

.meeting-details span {
    font-weight: 400;
    line-height: 1.4;
}

.participants-count {
    font-weight: 500;
    line-height: 1.4;
}

.view-details-btn {
    font-weight: 500;
    line-height: 1.4;
}

/* Bottom navigation styles */
.bottom-nav {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

.nav-text {
    font-weight: 400;
    line-height: 1.57;
}

/* Custom button hover effects */
.publish-btn:hover {
    background-color: #e67300;
}

.view-details-btn:hover {
    background-color: #5a8a2a;
}

/* Location filter hover effect */
.location-filter:hover {
    background-color: #e5e7eb;
}

/* Avatar styles */
.avatar {
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.pagination {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dot {
    transition: all 0.2s ease-in-out;
}

.dot:hover {
    transform: scale(1.3);
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .meeting-list {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .action-buttons {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
    
    .banner {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}

