/* Smart Show - Hero Banner Styles */

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-primary) 0%, var(--sage-secondary) 50%, var(--sage-light) 100%);
    overflow: hidden;
    animation: slideInFromTop 1s ease-out;
    padding: 2rem 1rem;
}



.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.brand-name {
    display: block;
    background: linear-gradient(45deg, var(--white), var(--sage-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--sage-lighter);
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.feature-item i {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--sage-lighter);
}

/* Enhanced Feature Button Styling */
.feature-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: clamp(0.5rem, 1vw, 0.65rem) clamp(0.75rem, 2.5vw, 1.25rem);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: clamp(120px, 25vw, 180px);
    justify-content: center;
    text-align: center;
    outline: none;
    font-family: inherit;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Stagger animation for multiple buttons */
.feature-btn:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-btn:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-btn:nth-child(3) {
    animation-delay: 0.6s;
}

/* Slide In Up Animation */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-btn:hover::before {
    left: 100%;
}

.feature-btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.feature-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.feature-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-btn i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Gradient Animation for Active State */
.feature-btn.active {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.5);
}

/* Enhanced Hover Effect with Glow */
.feature-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
}

.feature-btn:hover i {
    transform: scale(1.1);
    color: var(--white);
}

.feature-btn:hover span {
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.hero-btn.primary {
    background: var(--white);
    color: var(--sage-primary);
    box-shadow: var(--shadow-lg);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-3d);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
}

.hero-illustration {
    position: relative;
    width: clamp(300px, 60vw, 500px);
    height: clamp(300px, 60vw, 500px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Hub */
.central-hub {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hub-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.hub-core i {
    font-size: 2.5rem;
    color: var(--white);
    animation: glow 2s ease-in-out infinite alternate;
}

.hub-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hub-ring.ring-1 {
    width: 100px;
    height: 100px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.hub-ring.ring-2 {
    width: 140px;
    height: 140px;
    animation-duration: 25s;
}

.hub-ring.ring-3 {
    width: 180px;
    height: 180px;
    animation-duration: 35s;
    animation-direction: reverse;
}

/* Orbiting Elements */
.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit 15s linear infinite;
}

.orbit-1 { animation-duration: 20s; }
.orbit-2 { animation-duration: 25s; animation-direction: reverse; }
.orbit-3 { animation-duration: 30s; }
.orbit-4 { animation-duration: 35s; animation-direction: reverse; }

.orbital-element {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 120px;
    margin-top: -30px;
}

.element-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    transition: all 0.3s ease;
}

.element-icon i {
    font-size: 1.5rem;
    color: var(--white);
    z-index: 6;
}

.element-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: glow 2s ease-in-out infinite alternate;
    z-index: 4;
}

/* Element-specific colors */
.admin-element .element-icon {
    background: linear-gradient(135deg, rgba(124, 152, 133, 0.3), rgba(124, 152, 133, 0.1));
    border-color: rgba(124, 152, 133, 0.4);
}

.presenter-element .element-icon {
    background: linear-gradient(135deg, rgba(156, 180, 168, 0.3), rgba(156, 180, 168, 0.1));
    border-color: rgba(156, 180, 168, 0.4);
}

.operator-element .element-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 107, 107, 0.1));
    border-color: rgba(255, 107, 107, 0.4);
}

.moderator-element .element-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 193, 7, 0.4);
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.data-particle i {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 20%; right: 15%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 10%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.particle-5 { top: 60%; left: 5%; animation-delay: 4s; }
.particle-6 { top: 40%; right: 5%; animation-delay: 5s; }

/* Connection Lines */
.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.connection-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 1s; }
.line-4 { animation-delay: 1.5s; }

/* Energy Waves */
.energy-wave {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: expand 4s ease-out infinite;
}

.wave-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.wave-2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

.wave-3 {
    width: 400px;
    height: 400px;
    animation-delay: 2s;
}

/* Feature Labels */
.feature-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInOut 4s ease-in-out infinite;
    z-index: 8;
}

.label-admin {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.label-presenter {
    bottom: 25%;
    left: 15%;
    animation-delay: 1s;
}

.label-operator {
    top: 45%;
    right: 10%;
    animation-delay: 2s;
}

.label-moderator {
    bottom: 15%;
    right: 35%;
    animation-delay: 3s;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes drawLine {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}

@keyframes expand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* Hover Effects */
.orbital-element:hover .element-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.data-particle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hub-core:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: var(--white);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Responsive Hero Banner - Mobile First Approach */

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-banner {
        min-height: 100vh;
        padding: 1rem 0.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 250px;
    }
    
    .hero-illustration {
        width: clamp(200px, 50vw, 300px);
        height: clamp(200px, 50vw, 300px);
    }
    
    .central-hub {
        width: 80px;
        height: 80px;
    }
    
    .hub-core {
        width: 60px;
        height: 60px;
    }
    
    .hub-core i {
        font-size: 1.8rem;
    }
    
    .orbital-element {
        width: 40px;
        height: 40px;
        margin-left: 80px;
        margin-top: -20px;
    }
    
    .element-icon i {
        font-size: 1rem;
    }
    
    .data-particle {
        width: 30px;
        height: 30px;
    }
    
    .data-particle i {
        font-size: 0.8rem;
    }
    
    .feature-label {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

/* Small Devices (landscape phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-banner {
        min-height: 100vh;
        padding: 1.5rem 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .feature-btn {
        min-width: 160px;
        padding: 0.9rem 1.2rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-btn {
        min-width: 200px;
    }
    
    .hero-illustration {
        width: clamp(250px, 55vw, 350px);
        height: clamp(250px, 55vw, 350px);
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
    }
    
    .hub-core {
        width: 70px;
        height: 70px;
    }
    
    .hub-core i {
        font-size: 2rem;
    }
    
    .orbital-element {
        width: 50px;
        height: 50px;
        margin-left: 100px;
        margin-top: -25px;
    }
    
    .element-icon i {
        font-size: 1.2rem;
    }
    
    .data-particle {
        width: 35px;
        height: 35px;
    }
    
    .data-particle i {
        font-size: 0.9rem;
    }
}

/* Medium Devices (tablets, 768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-banner {
        min-height: 100vh;
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .feature-btn {
        min-width: 170px;
        padding: 1rem 1.3rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-btn {
        min-width: 220px;
    }
    
    .hero-illustration {
        width: 350px;
        height: 350px;
    }
}

/* Large Devices (desktops, 1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-content {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-illustration {
        width: 380px;
        height: 380px;
    }
}

/* Extra Large Devices (large desktops, 1440px and up) */
@media (min-width: 1440px) {
    .hero-content {
        max-width: 1400px;
        gap: 4rem;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .hero-illustration {
        width: 450px;
        height: 450px;
    }
    
    .central-hub {
        width: 140px;
        height: 140px;
    }
    
    .hub-core {
        width: 100px;
        height: 100px;
    }
    
    .hub-core i {
        font-size: 3rem;
    }
    
    .orbital-element {
        width: 80px;
        height: 80px;
        margin-left: 160px;
        margin-top: -40px;
    }
    
    .element-icon i {
        font-size: 2rem;
    }
    
    .data-particle {
        width: 50px;
        height: 50px;
    }
    
    .data-particle i {
        font-size: 1.2rem;
    }
    
    .feature-label {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-banner {
        min-height: 100vh;
        padding: 1rem 2rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        margin-bottom: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-visual {
        min-height: 200px;
    }
    
    .hero-illustration {
        width: clamp(200px, 30vw, 300px);
        height: clamp(200px, 30vw, 300px);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .central-hub,
    .orbital-element,
    .data-particle {
        backdrop-filter: blur(20px);
    }
    
    .hero-btn {
        backdrop-filter: blur(10px);
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-banner {
        animation: none;
    }
    
    .central-hub,
    .orbital-element,
    .data-particle,
    .hub-ring,
    .orbit,
    .energy-wave,
    .feature-label {
        animation: none;
    }
    
    .scroll-arrow {
        animation: none;
    }
    
    .hero-btn:hover {
        transform: none;
    }
    
    .feature-btn {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-btn:hover {
        transform: none;
    }
}


/* Print Styles */
@media print {
    .hero-banner {
        min-height: auto;
        background: white;
        color: black;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-visual {
        display: none;
    }
} 