/* Reset and Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* Apply Open Sans to all text elements */
body, 
h1, h2, h3, h4, h5, h6,
p, span, div,
a, li, td, th,
button, input, textarea,
.event-title, .event-date,
.hero-title, .detail-item,
.section-title, .section-subtitle,
.badge, .takeaways-list,
.register-note, .seats-note,
.location-info, .location-card h3 {
    font-family: 'Open Sans', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #1e293b 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bmc-logo {
    height: 50px;
    width: 150px;

}

.helix-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
}

.softlogic-logo {
    text-align: right;
    color: white;
}

.softlogic-main {
    font-size: 1rem;
    font-weight: bold;
    height: 120px;
    width: 120px;
}

.softlogic-sub {
    font-size: 0.75rem;
    color: #93c5fd;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card Styles */
.hero-section,
.why-attend-section,
.takeaways-section,
.networking-section,
.agenda-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #93c5fd;
}

.icon {
    font-size: 1.2rem;
}

.hero-description p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge.executive {
    background: rgba(249, 115, 22, 0.2);
    color: #fdba74;
}

.badge.use-cases {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.badge.security {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.attend-points,
.point-item {
    margin-bottom: 1.5rem;
}

.point-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Lists */
.takeaways-list,
.who-attend ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #cbd5e1;
}

.takeaways-list li,
.who-attend ul li {
    margin-bottom: 0.5rem;
}

.who-attend h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin-bottom: 1rem;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.agenda-table th,
.agenda-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #e2e8f0;
}

.agenda-table th {
    background: rgba(59, 130, 246, 0.2);
    font-weight: 600;
    color: white;
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
}

.agenda-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.agenda-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.seats-note {
    color: #93c5fd;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card,
.registration-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
}

.location-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.location-image {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: #94a3b8;
}

.registration-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    text-align: center;
}

.register-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.register-btn:active {
    transform: translateY(0);
}

.register-btn.registered {
    background: #22c55e;
    cursor: default;
}

.register-btn.registered:hover {
    transform: none;
    box-shadow: none;
    background: #22c55e;
}

.register-note {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0rem 0;
    margin-top: 0rem;
    text-align: center;
    color: #cbd5e1;
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-copyright {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .agenda-table {
        font-size: 0.875rem;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .why-attend-section,
    .takeaways-section,
    .networking-section,
    .agenda-section,
    .location-card,
    .registration-card {
        padding: 1.5rem;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section,
.why-attend-section,
.takeaways-section,
.networking-section,
.agenda-section,
.location-card,
.registration-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Success Message */
.success-message {
    background: #22c55e;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.3s ease-out;
}

.event-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: white;
        }
        .event-date {
            font-size: 14px;
            color: #333;
            margin-top: 10px;
            color: white;
        }

        .footer img {
            max-width: 100%;
            max-height: 100%;
            height: 60px;
            display: block;
            margin: 0 auto;
}


