/* ============================================
   HANGOUTSESSION.COM - EXACT REPLICA STYLESHEET
   ============================================ */

/* Root Variables */
:root {
    --primary-purple: #6B2FB3;
    --secondary-gold: #FFD700;
    --accent-cyan: #00D9FF;
    --dark-bg: #0F0F1E;
    --dark-secondary: #1A1A2E;
    --sidebar-dark: #2A2A3E;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --text-light-gray: #999999;
    --border-dark: #3A3A4E;
    --green-positive: #00FF00;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 24px rgba(107, 47, 179, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-gold);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

/* Link Badge */
.link-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(107, 47, 179, 0.1);
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    flex: 1;
    max-width: 400px;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-icon {
    flex-shrink: 0;
}

.badge-label {
    font-size: 11px;
    color: var(--text-light-gray);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-url {
    font-size: 13px;
    color: var(--primary-purple);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sparkle {
    flex-shrink: 0;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Auth Button */
.btn-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.btn-signin:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
    background: var(--secondary-gold);
    color: var(--dark-bg);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    margin-top: 80px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding: 96px 48px;
    background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

/* Hero Left */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title .highlight-gold {
    color: var(--secondary-gold);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 520px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-description .emphasis-cyan {
    color: var(--accent-cyan);
    font-weight: 600;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Value Props */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.value-prop {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.value-content p {
    font-size: 14px;
    color: var(--text-light-gray);
    line-height: 1.5;
}

/* Hero Right - iPhone Mockup */
.hero-right {
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.iphone-frame {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 20px 60px rgba(107, 47, 179, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.iphone-content {
    flex: 1;
    overflow-y: auto;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    padding-top: 32px;
}

/* Mobile Status Bar */
.mobile-status-bar {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-dark);
}

.time {
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 12px;
}

/* Mobile Profile */
.mobile-profile {
    display: flex;
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.profile-role {
    font-size: 12px;
    color: var(--text-light-gray);
}

.profile-rating {
    font-size: 12px;
    color: var(--accent-cyan);
    margin-top: 4px;
}

/* Sessions Heading */
.sessions-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    padding: 0 16px 12px 16px;
    border-bottom: 2px solid var(--primary-purple);
    margin: 0 16px 16px 16px;
    font-family: 'Inter', sans-serif;
}

/* Session Cards */
.session-card {
    margin: 0 16px 16px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.session-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}

.session-card h4 {
    font-size: 14px;
    color: var(--text-white);
    padding: 12px 12px 4px 12px;
    font-family: 'Inter', sans-serif;
}

.session-rating,
.session-meta {
    font-size: 12px;
    color: var(--text-light-gray);
    padding: 0 12px;
    margin: 2px 0;
}

.session-rating {
    color: var(--accent-cyan);
}

.session-price {
    font-size: 14px;
    color: var(--primary-purple);
    font-weight: 600;
    padding: 8px 12px 0 12px;
}

.session-price span {
    font-size: 12px;
    color: var(--text-light-gray);
    font-weight: 400;
}

.btn-book-now {
    width: calc(100% - 24px);
    margin: 12px 12px 12px 12px;
    padding: 12px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-book-now:hover {
    background: var(--secondary-gold);
    color: var(--dark-bg);
    transform: scale(1.02);
}

/* Earnings Widget */
.earnings-widget {
    background: rgba(107, 47, 179, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin: 16px;
}

.earnings-label {
    font-size: 12px;
    color: var(--text-light-gray);
    margin-bottom: 4px;
}

.earnings-amount {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-purple);
}

.earnings-change {
    font-size: 12px;
    color: var(--green-positive);
    margin-top: 4px;
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */

.dashboard-section {
    padding: 96px 48px;
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    filter: blur(3px);
    opacity: 0.6;
    pointer-events: none;
    min-height: 500px;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: rgba(107, 47, 179, 0.1);
    padding: 32px 24px;
    border-right: 1px solid var(--border-dark);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    color: var(--text-light-gray);
    display: block;
}

.menu-item.active {
    background: var(--primary-purple);
    color: white;
}

/* Dashboard Main */
.dashboard-main {
    padding: 32px;
}

.quick-stats h3,
.upcoming-bookings h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    padding: 24px;
    background: rgba(107, 47, 179, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light-gray);
    margin-bottom: 12px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 4px;
}

.stat-change {
    font-size: 12px;
    color: var(--green-positive);
}

.booking-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: rgba(107, 47, 179, 0.05);
    border-radius: 8px;
}

.booking-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.booking-info {
    flex: 1;
}

.booking-title {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.booking-date {
    font-size: 12px;
    color: var(--text-light-gray);
}

/* Dashboard Right */
.dashboard-right {
    padding: 32px;
    border-left: 1px solid var(--border-dark);
}

.link-section {
    margin-bottom: 48px;
}

.link-section h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.link-subtitle {
    font-size: 12px;
    color: var(--text-light-gray);
    margin-bottom: 16px;
}

.link-display {
    font-size: 14px;
    color: var(--text-light-gray);
    padding: 12px;
    background: rgba(107, 47, 179, 0.05);
    border-radius: 6px;
    margin-bottom: 12px;
    word-break: break-all;
}

.btn-copy {
    padding: 8px 16px;
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.btn-copy:hover {
    background: var(--secondary-gold);
    color: var(--dark-bg);
}

.share-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.share-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 47, 179, 0.1);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-icons a:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.upcoming-right h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.booking-item-right {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: rgba(107, 47, 179, 0.05);
    border-radius: 8px;
}

.booking-info-right {
    flex: 1;
}

.booking-status {
    font-size: 12px;
    color: var(--green-positive);
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   AUTH MODAL
   ============================================ */

.auth-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-secondary);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 64px 48px;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    z-index: 100;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-lock {
    font-size: 48px;
    margin-bottom: 16px;
}

.auth-modal h2 {
    font-size: 28px;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.auth-modal p {
    font-size: 14px;
    color: var(--text-gray);
}

.btn-google-signin {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: white;
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-google-signin:hover {
    background: var(--text-gray);
    transform: scale(1.02);
}

.modal-terms {
    font-size: 12px;
    color: var(--text-gray);
}

.modal-terms a {
    color: var(--primary-purple);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 64px 48px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-left p {
    font-size: 14px;
    color: var(--text-gray);
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.separator {
    color: var(--border-dark);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}
