/* assets/css/style.css */
:root {
    /* Brand Colors */
    --primary: #AA1169; /* Magenta */
    --primary-light: #d12086;
    --secondary: #2A6874; /* Dark Teal */
    --secondary-dark: #1f4f58;
    --accent: #61CE70; /* Green */
    
    /* Neutral Colors */
    --bg-light: #F6EAED;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-muted: #555555;
    --text-light: #f5f5f5;
    
    /* Layout & Shadow */
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(170, 17, 105, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }
.bg-secondary { background-color: var(--secondary); }
.lead { font-size: 1.2rem; font-weight: 300; }
.icon-large { font-size: 3rem; margin-bottom: 1rem; }
.icon-accent { color: var(--accent); font-size: 2.5rem; margin-bottom: 1rem; }
.icon-secondary { color: var(--secondary); font-size: 2.5rem; margin-bottom: 1rem; }

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 2px;
}

.text-center.section-title::after {
    margin: 10px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(170, 17, 105, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.glass-card-dark {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    padding-top: 80px; /* offset for nav */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Summit Content */
.summit-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition-normal);
    border-bottom: 4px solid var(--primary);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* Why Section */
.why-section h2 {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.theme-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(170, 17, 105, 0.3);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.theme-highlight h3 {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.theme-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

.details-list {
    list-style: none;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.details-list i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.details-list strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.vision-logo-mock {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 15px 30px rgba(170, 17, 105, 0.3);
    margin: 0 auto;
}

/* Speakers Section */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.speaker-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.speaker-img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-light);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary);
    border: 3px solid var(--primary);
}

.speaker-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.speaker-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Partners Section */
.partners-logo-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.partner-logo {
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-desc {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
    margin-top: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-email a {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Registration Form */
.registration-container {
    max-width: 600px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(170, 17, 105, 0.1);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .about-grid, .why-grid, .vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vision-logo-mock {
        width: 200px;
        height: 200px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.5rem; }
    
    .info-cards { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .mobile-toggle { display: block; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Admin Portal Styles
   ========================================================================== */
.admin-body {
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

.admin-body h1, .admin-body h2, .admin-body h3, .admin-body h4, .admin-body h5, .admin-body h6 {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 250px;
    background-color: #ffffff;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-header {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-between;
    box-sizing: border-box;
}

.sidebar-logo {
    max-height: 40px;
}

.sidebar-logo-text {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
}

.sidebar-nav {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.nav-item {
    margin: 0.2rem 1rem;
}

.admin-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.admin-sidebar .nav-link i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #888;
}

.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    background-color: rgba(170, 17, 105, 0.08); /* Light primary */
    color: var(--primary);
}

.admin-sidebar .nav-link:hover i, .admin-sidebar .nav-link.active i {
    color: var(--primary);
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Admin Main Content */
.admin-main {
    flex-grow: 1;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-topbar {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 90;
    box-sizing: border-box;
}

.topbar-left {
    display: flex;
    align-items: center;
}

.sidebar-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    margin-right: 1rem;
    cursor: pointer;
}

.page-title {
    margin: 0;
    font-size: 1.25rem;
    font-family: 'Outfit', sans-serif;
    color: #333;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
}

.user-profile .avatar {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.admin-content-wrapper {
    padding: 2rem;
    flex-grow: 1;
}

/* Admin Cards & Tables */
.admin-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    padding: 1.5rem;
    border: 1px solid #edf2f9;
    margin-bottom: 1.5rem;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #e9ecef;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
    color: #333;
}

.admin-table tr:hover td {
    background-color: #f8f9fa;
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 4px;
}

/* Admin Responsiveness */
@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .sidebar-toggle-btn {
        display: block;
    }
    
    .sidebar-close-btn {
        display: block;
    }
}

/* Enforce admin portal button sizes to match View Journey button */
.admin-wrapper .btn {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
    border-radius: 4px !important;
}
