/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header styles */
.header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 50%, #333333 100%);
    color: #f5f5f5;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 3px solid #d4af37;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header h1 {
    font-size: 2.2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    text-align: center;
}

.nav {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
}

.main-navigation {
    text-align: center;
}

/* Layout for main navigation */
#drive-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.next-meeting-section {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
}

.next-meeting-info {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.next-meeting-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

.next-meeting-title {
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-meeting-details {
    color: #f5f5f5;
    font-size: 1.1rem;
    line-height: 1.6;
}

.next-meeting-date {
    font-weight: 600;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.next-meeting-location {
    color: #cccccc;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Priority link styling */
.priority-link {
    background: rgba(212, 175, 55, 0.3) !important;
    border-color: #d4af37 !important;
    color: #d4af37 !important;
    font-weight: 700 !important;
    order: -1; /* Ensures it appears first */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Footer social media styling */
.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-link .social-icon {
    font-size: 1rem;
}

.social-link .social-handle {
    font-size: 0.85rem;
}



.nav-link {
    display: inline-block;
    color: #f5f5f5;
    text-decoration: none;
    padding: 15px 30px;
    margin: 0;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    text-align: center;
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: #d4af37;
}

/* Dynamic content styles */
.dynamic-content {
    text-align: left;
    line-height: 1.4;
    padding: 12px 20px;
}

.dynamic-content strong {
    display: block;
    margin-bottom: 5px;
}

.dynamic-content-placeholder {
    opacity: 0.7;
    font-style: italic;
}

.error-message {
    background: rgba(255, 69, 58, 0.2);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

/* Main content styles */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.chatbot-section-clean {
    /* Minimal container - let the widget handle its own styling */
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* Chatbot widget will handle its own styling */

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #cccccc;
    padding: 30px 0;
    margin-top: auto;
    border-top: 3px solid #d4af37;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

.footer-text p {
    opacity: 0.8;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        height: 60px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .main-links-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .nav-link {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .chatbot-section-clean {
        margin: 0 10px;
    }
    
    .next-meeting-section {
        max-width: 100%;
        margin: 20px 10px 0 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .drive-links h3 {
        font-size: 1rem;
    }
    
    .drive-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Loading animation for chatbot */
.chatbot-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.chatbot-loading::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 