/* Startup Business Summit 2026 - Premium Split Launch Gate Stylesheet */

#homepage-gate {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    overflow-y: auto;
    background-color: #f8fafc;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03), transparent 40%);
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #1e293b;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Scrollbar styling for gate overlay */
#homepage-gate::-webkit-scrollbar {
    width: 8px;
}
#homepage-gate::-webkit-scrollbar-track {
    background: #f1f5f9;
}
#homepage-gate::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
#homepage-gate::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.gate-grid {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
    box-sizing: border-box;
}

/* LEFT COLUMN - BRANDING & EVENT INFO */
.gate-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Header Logo block */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.summit-logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo-title .logo-accent {
    color: #f97316;
}

.logo-tagline {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main typography headings */
.main-heading {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    color: #0f172a;
    margin: 8px 0;
    letter-spacing: -0.5px;
}

.main-heading .text-gradient {
    background: linear-gradient(135deg, #f97316 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-subheading {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Bharat Mandapam image hero container */
.bharat-mandapam-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    background-color: #e2e8f0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    z-index: 5;
}

/* Info Details Card Overlay */
.floating-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: calc(100% - 40px);
    max-width: 320px;
    box-sizing: border-box;
    z-index: 5;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.icon-calendar { background-color: rgba(168, 85, 247, 0.1); color: #a855f7; }
.icon-location { background-color: rgba(249, 115, 22, 0.1); color: #f97316; }
.icon-building { background-color: rgba(99, 102, 241, 0.1); color: #6366f1; }

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-val {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}

/* Countdown timer panel */
.timer-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.timer-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 10px;
    border-radius: 30px;
}

.timer-panel .timer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 380px;
    padding: 0;
}

.timer-panel .timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 6px 4px;
    border: 1px solid #f1f5f9;
}

.timer-panel .timer-val {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.timer-panel .timer-lbl {
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
    margin-top: 1px;
    letter-spacing: 0.5px;
}

/* Stats horizontal strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
    margin-top: 4px;
}

.stat-pill {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.attendees-icon { background: rgba(99, 102, 241, 0.08); color: #6366f1; }
.startups-icon { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.investors-icon { background: rgba(168, 85, 247, 0.08); color: #a855f7; }
.speakers-icon { background: rgba(236, 72, 153, 0.08); color: #ec4899; }
.gov-icon { background: rgba(20, 184, 166, 0.08); color: #14b8a6; }
.influencers-icon { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* Footer bottom pill */
.footer-badge-pill {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 16px;
    border-radius: 30px;
}

.footer-badge-pill .orange-star {
    color: #f97316;
    margin-right: 4px;
}

/* RIGHT COLUMN - AUTH FLOATING WIDGET */
.gate-auth-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-card-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.welcome-lbl {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.sbs-title-big {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.sbs-desc {
    font-size: 13.5px;
    color: #64748b;
    margin: 4px 0 0;
}

/* Tab selectors */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.auth-tab:hover {
    color: #475569;
}

.auth-tab.active {
    color: #f97316;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f97316;
}

/* Forms design */
.auth-form-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.form-input-group i.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 14px;
}

.form-input-group input,
.form-input-group select {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    border-radius: 12px;
    color: #0f172a;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.2s;
}

.form-input-group input:focus,
.form-input-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-input-group.no-icon input,
.form-input-group.no-icon select {
    padding-left: 16px;
}

/* Custom dropdown caret */
.form-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.pwd-toggle-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}

.pwd-toggle-btn:hover {
    color: #475569;
}

.forgot-pwd-row {
    display: flex;
    justify-content: flex-end;
    margin-top: -4px;
}

.forgot-pwd-link {
    font-size: 12.5px;
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.forgot-pwd-link:hover {
    text-decoration: underline;
}

/* Gate Action Buttons overrides to bypass theme general styling */
#homepage-gate .gradient-btn {
    width: 100% !important;
    height: 48px !important;
    padding: 12px 24px !important;
    background: var(--sbs-gradient) !important;
    border: none !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.15) !important;
    margin-top: 8px !important;
    text-transform: none !important;
}

#homepage-gate .gradient-btn:hover {
    background: var(--sbs-gradient-glow) !important;
    color: #0c1a30 !important;
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.25) !important;
    transform: translateY(-1px) !important;
}

#homepage-gate .outline-btn {
    width: 100% !important;
    height: 48px !important;
    padding: 12px 24px !important;
    background: transparent !important;
    border: 2px solid #7f00ff !important;
    border-radius: 12px !important;
    color: #7f00ff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: none !important;
    margin-top: 8px !important;
    text-transform: none !important;
}

#homepage-gate .outline-btn:hover {
    background: #7f00ff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(127, 0, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

#homepage-gate .gradient-btn:disabled,
#homepage-gate .outline-btn:disabled {
    background: #cbd5e1 !important;
    color: #94a3b8 !important;
    border-color: #cbd5e1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Google Sign-in button */
.auth-divider {
    text-align: center;
    position: relative;
    margin: 18px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e2e8f0;
    z-index: 1;
}

.auth-divider span {
    background-color: #ffffff;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.google-auth-btn {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    color: #475569;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.google-auth-btn:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
}

.auth-card-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.auth-card-footer a {
    color: #f97316;
    text-decoration: none;
    font-weight: 700;
}

.auth-card-footer a:hover {
    text-decoration: underline;
}

/* Trust indicators */
.trust-markers {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 10px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.trust-icon {
    font-size: 14px;
    color: #94a3b8;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.trust-subtitle {
    font-size: 9px;
    font-weight: 600;
    color: #94a3b8;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    .gate-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 16px;
    }
    
    .main-heading {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .main-heading {
        font-size: 24px;
    }
    
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-info-card {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        border-radius: 0 0 20px 20px;
        box-shadow: none;
        border: none;
        background: #ffffff;
    }
    
    .location-badge {
        display: none;
    }
    
    .auth-card-widget {
        padding: 24px 16px;
    }
    
    .sbs-title-big {
        font-size: 26px;
    }
    
    .trust-markers {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        border-top: 1px solid #e2e8f0;
        padding-top: 16px;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
}
 
@media (min-width: 1025px) {
    #homepage-gate {
        overflow-y: auto;
    }
}
