/* Hero Buttons Styles */
.hero-buttons {
    margin-top: 1.2rem;
    display: inline-flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: auto;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 25px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: auto;
    min-width: 150px;
    white-space: nowrap;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    transform: translateX(0);
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.hero-buttons .btn-accent {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.hero-buttons .btn-accent:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 0 2rem;
    }

    .hero-buttons .btn {
        width: 200px;
        padding: 0.75rem 1.2rem;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 0.75rem;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .hero-buttons .btn:active {
        transform: scale(0.98);
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.6rem;
        margin-top: 1.2rem;
        padding: 0 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 180px;
        padding: 0.65rem 1rem;
        font-size: 0.75rem;
        min-height: 40px;
        border-radius: 0.65rem;
        letter-spacing: 0.2px;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .hero-buttons {
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 160px;
        padding: 0.6rem 0.9rem;
        font-size: 0.7rem;
        min-height: 38px;
    }
}

/* Animation */
.hero-buttons .btn {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-buttons .btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 