/* Custom CSS for Website */

/* Root Variables */
:root {
    --primary-color: #00d1b2;
    --secondary-color: #3273dc;
    --accent-color: #ff3860;
    --dark-color: #363636;
    --light-color: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00c4a7;
}

/* Navigation Enhancements */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(0, 209, 178, 0.95) !important;
}

.navbar-brand .navbar-item {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-burger {
    height: 3.25rem;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero Section */
.hero.is-primary {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero.is-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50" cy="50" r="50"><stop offset="0" stop-color="white" stop-opacity="0.1"/><stop offset="100" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="90" cy="10" r="10" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero .title.is-1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.hero .subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Title Underlines */
.title-underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-list li:hover {
    background-color: rgba(0, 209, 178, 0.1);
    transform: translateX(5px);
}

.feature-list li .material-icons {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
}

.stat-item {
    padding: 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* App Cards */
.app-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.app-card .card-image {
    overflow: hidden;
}

.app-screenshot {
    transition: var(--transition);
    object-fit: cover;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.app-card:hover .app-screenshot {
    transform: scale(1.05);
}

.app-icon {
    font-size: 3rem !important;
    color: var(--primary-color);
    background: rgba(0, 209, 178, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-small {
    font-size: 2rem !important;
    color: var(--primary-color);
    background: rgba(0, 209, 178, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-right: 1rem;
}

.app-stats .tag {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 20px;
}

.app-features .feature-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* App Preview Boxes */
.app-preview {
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
    height: 100%;
}

.app-preview:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Contact Section */
.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-info .contact-item:hover {
    background-color: rgba(0, 209, 178, 0.05);
}

.contact-info .contact-item .material-icons {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.5rem;
}

.contact-info .contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

/* Footer */
.footer {
    position: relative;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
}

.footer .footer-links li {
    margin-bottom: 0.5rem;
}

.footer .footer-links a {
    transition: var(--transition);
    position: relative;
}

.footer .footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* Button Enhancements */
.button {
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.button::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.5s;
}

.button:hover::before {
    left: 100%;
}

.button.is-primary {
    background: var(--gradient-primary);
    border: none;
}

.button.is-success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border: none;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero .title.is-1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle.is-3 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .app-card .media-content .title {
        font-size: 1.2rem;
    }
    
    .contact-info .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info .contact-item .material-icons {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .button {
        margin-bottom: 0.5rem;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.rounded-lg {
    border-radius: 12px;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Material Icons Adjustments */
.material-icons.is-large {
    font-size: 3rem !important;
}

.material-icons.is-small {
    font-size: 1rem;
} 